/* Privacy Page Specific Styles from privacy.html */
.privacy-section {
    padding: 100px 0 50px;
    /* The background color and main text color should ideally be inherited 
       from body or a main wrapper if a dark theme is consistently applied.
       If privacy.html had a specific dark background for this section only,
       it would be set here, e.g., background-color: #001524; 
       For now, relying on global styles or main.css for overall theme. */
}

.privacy-title {
    text-align: center;
    margin-bottom: 50px;
}

.privacy-title h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: white; /* Explicitly white as per original privacy.html style block */
    font-weight: 700;
}

.privacy-title p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.9); /* Light text for subtitle */
}

.privacy-content {
    background-color: rgba(0, 21, 36, 0.6); /* Semi-transparent dark background for content area */
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 40, 70, 0.6);
    color: rgba(255, 255, 255, 0.9); /* Default text color for this content block */
}

.privacy-content h2 {
    font-size: 2rem;
    margin: 30px 0 20px;
    color: white; /* Headings within content block */
    font-weight: 600;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
}

.privacy-content h2:first-child {
    margin-top: 0;
}

.privacy-content h3 {
    font-size: 1.4rem;
    margin: 25px 0 15px;
    color: var(--blue-accent); /* Using CSS variable, ensure it's defined in main.css or globally */
}

.privacy-content p {
    margin-bottom: 20px;
    line-height: 1.7;
    /* Inherits color from .privacy-content */
}

.privacy-content ul {
    margin-bottom: 20px;
    padding-left: 25px; /* Standard list indentation */
    list-style-position: outside;
}

.privacy-content li {
    margin-bottom: 10px;
    /* Inherits color from .privacy-content */
}

.last-updated {
    margin-top: 40px;
    font-style: italic;
    color: rgba(255, 255, 255, 0.6); /* Muted color for last updated text */
    font-size: 0.9rem;
    text-align: right;
}

@media screen and (max-width: 768px) {
    .privacy-section {
        padding-top: 80px;
    }
    
    .privacy-content {
        padding: 25px;
    }
    
    .privacy-title h1 {
        font-size: 2.2rem;
    }
}
