/* Privacy Policy Page Styles */
.privacy-container {
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Breadcrumb Navigation */
.breadcrumb {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
    margin: 0;
}

.breadcrumb-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.breadcrumb-item {
    color: white;
    font-size: 0.9rem;
}

.breadcrumb-item:not(:last-child)::after {
    content: "›";
    margin: 0 10px;
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-item a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.breadcrumb-item a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.breadcrumb-item[aria-current="page"] {
    opacity: 0.8;
    font-weight: 500;
}

.privacy-header {
    background: rgba(0, 0, 0, 0.1);
    padding: 60px 20px;
    text-align: center;
    color: white;
}

.header-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.tagline {
    font-size: 1.5rem;
    margin-bottom: 15px;
    opacity: 0.9;
    font-weight: 300;
}

.last-updated {
    font-size: 1rem;
    opacity: 0.8;
    font-style: italic;
}

.privacy-main {
    background: white;
    margin: 0;
    padding: 0;
}

.privacy-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px;
}

.privacy-section {
    margin-bottom: 50px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.privacy-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
    font-weight: 700;
    border-bottom: 3px solid #4CAF50;
    padding-bottom: 10px;
}

.privacy-section h3 {
    font-size: 1.4rem;
    margin: 25px 0 15px;
    color: #4CAF50;
    font-weight: 600;
}

.privacy-section p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
    font-size: 1rem;
}

.privacy-section ul {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
    padding-left: 20px;
}

.privacy-section li {
    margin-bottom: 8px;
}

.privacy-section strong {
    color: #333;
    font-weight: 600;
}

.privacy-section a {
    color: #4CAF50;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.privacy-section a:hover {
    color: #45a049;
    text-decoration: underline;
}

/* Special styling for important sections */
.privacy-section:first-of-type {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: white;
}

.privacy-section:first-of-type h2 {
    color: white;
    border-bottom-color: white;
}

.privacy-section:first-of-type p {
    color: white;
    opacity: 0.9;
}

/* Highlight important information */
.privacy-section ul li strong {
    color: #4CAF50;
}

/* Contact section styling */
.privacy-section:has(h2:contains("Contact Us")) {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.privacy-section:has(h2:contains("Contact Us")) h2 {
    color: white;
    border-bottom-color: white;
}

.privacy-section:has(h2:contains("Contact Us")) p,
.privacy-section:has(h2:contains("Contact Us")) li {
    color: white;
    opacity: 0.9;
}

.privacy-section:has(h2:contains("Contact Us")) a {
    color: #4CAF50;
    background: white;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 600;
}

/* Footer */
.privacy-footer {
    background: #333;
    color: white;
    padding: 40px 20px;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-links {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #4CAF50;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .header-content h1 {
        font-size: 2.5rem;
    }
    
    .tagline {
        font-size: 1.2rem;
    }
    
    .privacy-content {
        padding: 40px 15px;
    }
    
    .privacy-section {
        padding: 25px 20px;
        margin-bottom: 30px;
    }
    
    .privacy-section h2 {
        font-size: 1.6rem;
    }
    
    .privacy-section h3 {
        font-size: 1.2rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .privacy-header {
        padding: 40px 15px;
    }
    
    .header-content h1 {
        font-size: 2rem;
    }
    
    .privacy-content {
        padding: 30px 10px;
    }
    
    .privacy-section {
        padding: 20px 15px;
        margin-bottom: 25px;
    }
    
    .privacy-section h2 {
        font-size: 1.4rem;
    }
    
    .privacy-section h3 {
        font-size: 1.1rem;
    }
}

/* Print styles */
@media print {
    .privacy-container {
        background: white;
    }
    
    .privacy-header {
        background: white;
        color: black;
    }
    
    .privacy-section {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
        margin-bottom: 20px;
    }
    
    .privacy-footer {
        background: white;
        color: black;
    }
}

/* Accessibility improvements */
.privacy-section:focus-within {
    outline: 2px solid #4CAF50;
    outline-offset: 2px;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Table of contents styling (if needed) */
.toc {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    border-left: 4px solid #4CAF50;
}

.toc h3 {
    margin-top: 0;
    color: #333;
}

.toc ul {
    list-style: none;
    padding-left: 0;
}

.toc li {
    margin-bottom: 5px;
}

.toc a {
    color: #4CAF50;
    text-decoration: none;
    font-weight: 500;
}

.toc a:hover {
    text-decoration: underline;
}
