/* ============================================
   PRIVACY POLICY PAGE
   ============================================ */

/* ===== PRIVACY HEADER ===== */
.privacy-header {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
}

.privacy-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../../assets/images/blue-bg-1280x800.jpg') center/cover no-repeat;
    opacity: 0.1;
    pointer-events: none;
}

.privacy-header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

.privacy-header-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    line-height: 1.2;
}

.privacy-header-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
}

/* ===== PRIVACY CONTENT ===== */
.privacy-content {
    padding: 80px 0;
    background-color: #ffffff;
}

.privacy-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

.privacy-section {
    margin-bottom: 48px;
}

.privacy-section:last-child {
    margin-bottom: 0;
}

.privacy-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 3px solid #3DBF2B;
}

.privacy-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-top: 32px;
    margin-bottom: 16px;
}

.privacy-section p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: #333333;
    margin-bottom: 16px;
}

.privacy-section ul {
    margin: 16px 0;
    padding-left: 28px;
}

.privacy-section li {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: #333333;
    margin-bottom: 12px;
    position: relative;
}

.privacy-section li::marker {
    color: #3DBF2B;
    font-weight: 600;
}

.privacy-section a {
    color: #3DBF2B;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.privacy-section a:hover {
    color: #2d8f20;
    text-decoration: underline;
}

.privacy-section strong {
    color: #1a1a2e;
    font-weight: 600;
}

/* Contact Info Section */
.contact-info {
    background-color: #f8f9fa;
    padding: 24px;
    border-radius: 8px;
    border-left: 4px solid #3DBF2B;
    margin-top: 24px;
}

.contact-info p {
    margin-bottom: 8px;
}

.contact-info p:last-child {
    margin-bottom: 0;
}

/* Footer Privacy Link Styles */
.footer-separator {
    margin: 0 8px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-privacy-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-privacy-link:hover {
    color: #3DBF2B;
    text-decoration: underline;
}

/* ===== RESPONSIVE ===== */

/* Tablet (768px - 1023px) */
@media screen and (max-width: 1023px) {
    .privacy-header {
        padding: 100px 0 60px;
    }
    
    .privacy-header-title {
        font-size: 2.75rem;
    }
    
    .privacy-header-subtitle {
        font-size: 1rem;
    }
    
    .privacy-content {
        padding: 60px 0;
    }
    
    .privacy-section h2 {
        font-size: 1.75rem;
    }
    
    .privacy-section h3 {
        font-size: 1.375rem;
    }
}

/* Mobile (< 768px) */
@media screen and (max-width: 767px) {
    .privacy-header {
        padding: 80px 0 40px;
    }
    
    .privacy-header-container {
        padding: 0 20px;
    }
    
    .privacy-header-title {
        font-size: 2rem;
    }
    
    .privacy-header-subtitle {
        font-size: 0.9375rem;
    }
    
    .privacy-content {
        padding: 40px 0;
    }
    
    .privacy-container {
        padding: 0 20px;
    }
    
    .privacy-section {
        margin-bottom: 36px;
    }
    
    .privacy-section h2 {
        font-size: 1.5rem;
        margin-bottom: 16px;
        padding-bottom: 8px;
    }
    
    .privacy-section h3 {
        font-size: 1.25rem;
        margin-top: 24px;
        margin-bottom: 12px;
    }
    
    .privacy-section p,
    .privacy-section li {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    .contact-info {
        padding: 20px;
    }
    
    .footer-copyright {
        flex-direction: column;
        gap: 8px;
    }
    
    .footer-separator {
        display: none;
    }
}

/* Small Mobile (< 480px) */
@media screen and (max-width: 479px) {
    .privacy-header-title {
        font-size: 1.75rem;
    }
    
    .privacy-section h2 {
        font-size: 1.375rem;
    }
    
    .privacy-section h3 {
        font-size: 1.125rem;
    }
    
    .privacy-section p,
    .privacy-section li {
        font-size: 0.9375rem;
    }
}

