/* Privacy Policy Specific Styles */

.privacy-main {
    padding-top: 70px; /* Account for fixed navbar */
    min-height: 100vh;
    background: var(--bg-light);
}

.privacy-header {
    background: var(--gradient-hero);
    color: white;
    padding: 4rem 0 3rem;
    text-align: center;
}

.privacy-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.privacy-updated {
    font-size: 1.1rem;
    opacity: 0.9;
    font-style: italic;
}

.privacy-content {
    background: var(--bg-white);
    margin: -2rem auto 0;
    max-width: 1000px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    position: relative;
}

/* Language Content Switching */
.language-content {
    display: none;
    padding: 3rem;
}

.language-content.active {
    display: block;
    animation: fadeIn 0.3s ease-in-out;
}

.flag-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--border-color);
}

.flag-header h2 {
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: 600;
}

/* Privacy Sections */
.privacy-section {
    max-width: 100%;
}

.privacy-item {
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.privacy-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.privacy-item h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--secondary-color);
}

.privacy-item h4 {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 1.5rem 0 0.8rem 0;
}

.privacy-item p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.privacy-item strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* Privacy Lists */
.privacy-list {
    list-style: none;
    margin: 1rem 0;
    padding: 0;
}

.privacy-list li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    position: relative;
    padding-left: 1.5rem;
}

.privacy-list li::before {
    content: '•';
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Highlight Boxes */
.highlight-box {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 2px solid #f59e0b;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    box-shadow: var(--shadow-sm);
}

.highlight-box h4 {
    color: #92400e;
    margin: 0 0 1rem 0;
    font-size: 1.2rem;
}

.highlight-box .privacy-list li {
    color: #92400e;
    font-weight: 500;
}

.highlight-box .privacy-list li::before {
    color: #f59e0b;
}

/* Links */
.privacy-item a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.privacy-item a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Language Tab Navigation (for future enhancement) */
.language-tabs {
    display: flex;
    background: var(--bg-light);
    border-bottom: 1px solid var(--border-color);
    overflow-x: auto;
    padding: 0 3rem;
}

.language-tab {
    padding: 1rem 1.5rem;
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-size: 0.95rem;
}

.language-tab:hover {
    color: var(--primary-color);
    background: var(--bg-white);
}

.language-tab.active {
    color: var(--primary-color);
    background: var(--bg-white);
    border-bottom: 2px solid var(--primary-color);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .privacy-header {
        padding: 3rem 0 2rem;
    }
    
    .privacy-header h1 {
        font-size: 2rem;
    }
    
    .privacy-content {
        margin: -1rem 1rem 0;
        border-radius: 8px;
    }
    
    .language-content {
        padding: 2rem 1.5rem;
    }
    
    .flag-header h2 {
        font-size: 1.5rem;
    }
    
    .privacy-item h3 {
        font-size: 1.2rem;
    }
    
    .highlight-box {
        padding: 1rem;
        margin: 1rem 0;
    }
    
    .language-tabs {
        padding: 0 1.5rem;
    }
    
    .language-tab {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .privacy-header {
        padding: 2.5rem 0 1.5rem;
    }
    
    .privacy-header h1 {
        font-size: 1.8rem;
    }
    
    .privacy-updated {
        font-size: 1rem;
    }
    
    .privacy-content {
        margin: -0.5rem 0.5rem 0;
    }
    
    .language-content {
        padding: 1.5rem 1rem;
    }
    
    .flag-header {
        margin-bottom: 2rem;
    }
    
    .flag-header h2 {
        font-size: 1.3rem;
    }
    
    .privacy-item {
        margin-bottom: 2rem;
    }
    
    .privacy-item h3 {
        font-size: 1.1rem;
    }
    
    .privacy-item h4 {
        font-size: 1rem;
    }
    
    .privacy-list li {
        font-size: 0.95rem;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .footer,
    .language-switcher {
        display: none;
    }
    
    .privacy-main {
        padding-top: 0;
    }
    
    .privacy-header {
        background: none;
        color: var(--text-primary);
        padding: 2rem 0 1rem;
    }
    
    .privacy-content {
        margin: 0;
        box-shadow: none;
        border: 1px solid var(--border-color);
    }
    
    .language-content {
        display: block !important;
        page-break-before: always;
    }
    
    .language-content:first-child {
        page-break-before: auto;
    }
}
