/* privacy.css - Final Corrected Version */

main {
    padding-top: 120px; /* This is the fix for the header overlap */
}

.privacy-container {
    max-width: 900px;
    margin: 0 auto;
    padding-bottom: 80px;
}

/* Header Section */
.privacy-header {
    text-align: center;
    margin-bottom: 4rem;
}

.page-title {
    font-family: "Helvetica Neue", sans-serif;
    font-size: 80px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 24px;
    background: linear-gradient(180deg, #ffffff 0%, #bd815f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.page-title::before {
    content: "Privacy Policy";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: -1;
    background: linear-gradient(180deg, #bd815f 0%, #c68642 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: blur(20px);
    opacity: 0.5;
}

.last-updated {
    font-size: 18px;
    color: #bd815f;
    opacity: 0.8;
}

/* Table of Contents */
.table-of-contents {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(180, 129, 95, 0.15);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.table-of-contents h2 {
    font-size: 32px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 20px;
}

.table-of-contents ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.table-of-contents a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    padding: 12px 20px;
    background: #000;
    border: 1px solid rgba(189, 129, 95, 0.15);
    border-radius: 12px;
    transition: all 0.3s ease;
    display: block;
}

.table-of-contents a:hover {
    color: #bd815f;
    background: rgba(189, 129, 95, 0.05);
    border-color: rgba(189, 129, 95, 0.3);
    transform: translateX(5px);
}

/* Main Content Sections */
.privacy-section {
    background-color: #1C1C1E;
    padding: 35px;
    border-radius: 16px;
    margin-bottom: 30px;
    border: 1px solid #2a2a2a;
    border-left: 3px solid #D4AC79;
}

.privacy-section h2 {
    font-size: 32px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.privacy-section p {
    color: #a0a0a0;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.privacy-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.privacy-list li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 0.5rem;
}

.privacy-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #D4AC79;
    font-size: 24px;
    line-height: 1;
}

.privacy-section a {
    color: #bd815f;
    text-decoration: none;
    font-weight: 500;
}

.privacy-section a:hover {
    text-decoration: underline;
}

.icon {
    font-size: 1.5rem;
}

.highlight-box {
    background: rgba(189, 129, 95, 0.1);
    border-left: 3px solid #bd815f;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 8px;
}

/* Contact Section */
.contact-info {
    background: #000;
    padding: 35px;
    border-radius: 16px;
    margin-top: 25px;
    border: 1px solid rgba(189, 129, 95, 0.2);
}

/* Footer (already styled by common.css) */
.footer {
    text-align: center;
    padding: 3rem 0;
    color: #999;
}

/* Responsive */
@media (max-width: 768px) {
    .page-title {
        font-size: 60px;
    }
    
    .privacy-section {
        padding: 20px;
    }
    
    .privacy-section h2 {
        font-size: 28px;
    }
}