/* privacy.css - Styles for privacy policy page */

/* Privacy Header */
.privacy-header {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(30, 64, 175, 0.2);
}

.privacy-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 15px;
}

.privacy-header .subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.privacy-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.meta-item i {
    font-size: 1.1rem;
}

/* Breadcrumb Navigation */
.breadcrumb-nav {
    margin-bottom: 2rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.breadcrumb {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-item a {
    color: #3b82f6;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s;
}

.breadcrumb-item a:hover {
    color: #1e40af;
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: 5px;
}

.breadcrumb-item:not(:last-child)::after {
    content: ">";
    margin-left: 10px;
    color: #9ca3af;
}

/* Privacy Sections */
.privacy-content {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.privacy-section {
    border-bottom: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.privacy-section:last-child {
    border-bottom: none;
}

.privacy-section.expanded .section-header {
    background: #f0f9ff;
}

.privacy-section.expanded .section-header h2 {
    color: #1e40af;
}

.section-header {
    background: #f8fafc;
    padding: 1.5rem 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.section-header:hover {
    background: #f0f9ff;
}

.section-header h2 {
    font-size: 1.5rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #374151;
}

.section-header h2 i {
    font-size: 1.3rem;
    width: 30px;
    text-align: center;
}

.section-header::after {
    content: "▼";
    font-size: 0.8rem;
    color: #6b7280;
    transition: transform 0.3s;
}

.privacy-section.expanded .section-header::after {
    transform: rotate(180deg);
}

.section-content {
    padding: 2rem;
    line-height: 1.8;
    color: #4b5563;
}

.section-content h3 {
    color: #1e40af;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.section-content h3:first-child {
    margin-top: 0;
}

.section-content ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.section-content li {
    margin-bottom: 0.5rem;
}

.section-content li strong {
    color: #1f2937;
}

/* Download Section */
.privacy-download {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 0 0 15px 15px;
}

.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #3b82f6;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid #3b82f6;
    margin-bottom: 1rem;
}

.btn-download:hover {
    background: #2563eb;
    border-color: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-print {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #6b7280;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid #6b7280;
    margin-left: 1rem;
    cursor: pointer;
    border: none;
    font-family: inherit;
    font-size: inherit;
}

.btn-print:hover {
    background: #4b5563;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(107, 114, 128, 0.3);
}

.download-note {
    color: #6b7280;
    font-size: 0.9rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.download-note i {
    margin-right: 5px;
    color: #3b82f6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .privacy-header h1 {
        font-size: 2rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .privacy-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .section-header {
        padding: 1rem;
    }
    
    .section-header h2 {
        font-size: 1.3rem;
    }
    
    .section-content {
        padding: 1.5rem;
    }
    
    .breadcrumb {
        font-size: 0.9rem;
    }
    
    .privacy-download {
        padding: 2rem 1rem;
    }
    
    .btn-download, .btn-print {
        width: 100%;
        margin: 0.5rem 0;
        justify-content: center;
    }
    
    .btn-print {
        margin-left: 0;
    }
}

/* Print Styles */
@media print {
    .main-header,
    .main-footer,
    .footer-nav,
    .search-container,
    .breadcrumb-nav,
    .privacy-download {
        display: none !important;
    }
    
    .privacy-header {
        background: white !important;
        color: black !important;
        padding: 1rem !important;
        border: 2px solid #1e40af !important;
    }
    
    .privacy-meta {
        background: white !important;
        border: 1px solid #ddd !important;
    }
    
    .privacy-content {
        box-shadow: none !important;
        border: 1px solid #ddd !important;
    }
    
    .section-header {
        break-inside: avoid;
        background: white !important;
        border-bottom: 2px solid #1e40af !important;
    }
    
    body {
        font-size: 12pt !important;
        line-height: 1.5 !important;
    }
    
    .container {
        max-width: 100% !important;
        padding: 0 !important;
    }
}