/* Privacy Page Specific Styles */
/* Depends on style.css for CSS variables and base styles */

/* Privacy Content Layout */
.privacy-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    line-height: 1.6;
}

/* Privacy Sections */
.privacy-section {
    background: white;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border: 1px solid rgba(0,0,0,0.05);
}

.privacy-section h2 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.privacy-section h3 {
    color: var(--dark);
    font-size: 1.2rem;
    margin: 25px 0 15px 0;
    font-weight: 600;
}

.privacy-section p {
    margin-bottom: 15px;
    color: var(--dark);
}

.privacy-section ul {
    margin: 15px 0;
    padding-left: 20px;
}

.privacy-section li {
    margin-bottom: 8px;
    color: var(--dark);
    position: relative;
}

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

/* Contact Info Styling */
.contact-info {
    background: var(--light);
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
    border-left: 4px solid var(--primary);
}

.contact-info p {
    margin: 8px 0;
    font-weight: 500;
}

/* Hero Section Specific */
.privacy-hero {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    text-align: center;
    padding: 60px 20px;
    margin-bottom: 40px;
}

.privacy-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.privacy-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .privacy-content {
        padding: 10px;
    }
    
    .privacy-section {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .privacy-section h2 {
        font-size: 1.3rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .privacy-hero h1 {
        font-size: 2rem;
    }
    
    .privacy-hero p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .privacy-section {
        padding: 15px;
    }
    
    .privacy-section h2 {
        font-size: 1.2rem;
    }
    
    .privacy-section h3 {
        font-size: 1.1rem;
    }
    
    .privacy-hero h1 {
        font-size: 1.8rem;
    }
    
    .privacy-hero p {
        font-size: 1rem;
    }
}

/* Print Styles */
@media print {
    .navbar, .footer, .privacy-hero {
        display: none;
    }
    
    .privacy-section {
        box-shadow: none;
        border: 1px solid #ddd;
        page-break-inside: avoid;
    }
    
    .privacy-section h2 {
        color: #000;
        border-bottom: 1px solid #000;
    }
}

/* Accessibility Improvements */
.privacy-section h2:focus,
.privacy-section h3:focus {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

/* Smooth Scrolling for Internal Links */
.privacy-content a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.privacy-content a:hover {
    text-decoration: underline;
    color: var(--accent);
}

/* Table of Contents (if needed) */
.toc {
    background: var(--light);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
    border-left: 4px solid var(--accent);
}

.toc h3 {
    margin-top: 0;
    color: var(--accent);
}

.toc ul {
    list-style: none;
    padding-left: 0;
}

.toc li {
    margin-bottom: 5px;
}

.toc a {
    color: var(--primary);
    text-decoration: none;
}

.toc a:hover {
    text-decoration: underline;
}

/* Highlight important information */
.important {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 6px;
    padding: 15px;
    margin: 20px 0;
    border-left: 4px solid #f39c12;
}

.important p {
    margin: 0;
    color: #856404;
    font-weight: 500;
}
