/* Privacy Page Styles */
.privacy-content {
    max-width: 68rem;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.privacy-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.privacy-intro p {
    font-size: 1.125rem;
    color: var(--main-text-color);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.privacy-intro p:first-child {
    font-size: 1.25rem;
    color: var(--border-heading-color);
    font-weight: 500;
}

.privacy-section {
    margin-bottom: 3rem;
    background: rgba(255, 255, 255, 0.02);
    padding: 2.5rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 207, 157, 0.25);
}

.privacy-section h2 {
    color: var(--border-heading-color);
    font-family: 'Alegreya Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--border-heading-color);
    padding-bottom: 0.5rem;
}

.privacy-section p {
    color: var(--main-text-color);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.privacy-section ul {
    margin: 1rem 0 1rem 1.5rem;
}

.privacy-section li {
    color: var(--main-text-color);
    line-height: 1.6;
    margin-bottom: 0.5rem;
    position: relative;
}

.privacy-section li::marker {
    color: var(--border-heading-color);
}

.privacy-section strong {
    color: var(--border-heading-color);
    font-weight: 600;
}

.privacy-footer {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(255, 207, 157, 0.05);
    border-radius: 1rem;
    border: 1px solid rgba(255, 207, 157, 0.4);
}

.privacy-footer p {
    color: var(--main-text-color);
    font-style: italic;
    margin: 0;
}

/* Contact information styling */
.privacy-section ul li:has(a) {
    color: var(--border-heading-color);
}

@media (max-width: 768px) {
    .privacy-content {
        padding: 1rem 0.5rem;
    }
    
    .privacy-section {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .privacy-section h2 {
        font-size: 1.3rem;
    }
    
    .privacy-intro p:first-child {
        font-size: 1.125rem;
    }
    
    .privacy-footer {
        padding: 1.5rem;
        margin-top: 2rem;
    }
}
