/* ========== PRIVACY POLICY CSS ========== */

/* AP Hero - Common styles for banner */
.ap-hero {
    position: relative;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 100px 20px 60px;
}
.ap-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    animation: apHeroZoom 12s ease-in-out infinite alternate;
}
@keyframes apHeroZoom { from { transform: scale(1.05); } to { transform: scale(1.12); } }
.ap-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(10,61,145,0.85) 0%, rgba(6,19,37,0.92) 60%, rgba(243,105,32,0.4) 100%);
}
.ap-hero-content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
    max-width: 1000px;
}
.ap-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(247,186,0,0.18);
    border: 1px solid rgba(247,186,0,0.55);
    color: #f7ba00;
    padding: 7px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 22px;
    backdrop-filter: blur(8px);
}
.ap-hero-content h1 {
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    font-weight: 900;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 18px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
.ap-highlight { color: var(--primary-orange); }
.ap-hero-content p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255,255,255,0.85);
    max-width: 850px;
    margin: 0 auto 0;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .ap-hero {
        min-height: auto !important;
        padding: 45px 5% 30px !important;
    }
    .ap-hero-content {
        padding: 0;
        max-width: 100%;
        width: 100%;
    }
    .ap-hero-badge {
        font-size: 10px;
        padding: 5px 12px;
        margin-bottom: 8px;
    }
    .ap-hero-content h1 {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 10px;
    }
    .ap-hero-content p {
        font-size: 13.5px;
        line-height: 1.5;
    }
}

.privacy-wrapper {
    background-color: #f8fcfb; /* Very soft background to contrast the white card */
    padding: 80px 0;
    font-family: 'Poppins', sans-serif;
}

.privacy-container {
    max-width: 1000px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(10, 61, 145, 0.08);
    overflow: hidden;
}

/* Gradient Header Inside Card */
.privacy-header {
    background: linear-gradient(135deg, #132237, #1c3252);
    padding: 60px 50px;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

/* Decorative Circle */
.privacy-header::after {
    content: '';
    position: absolute;
    top: -50px; right: -50px;
    width: 350px; height: 350px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 50%;
}

.privacy-header h1 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.privacy-header p {
    font-size: 16px;
    opacity: 0.9;
    max-width: 600px;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.last-updated {
    font-size: 14px;
    color: #0A3D91;
    margin-top: 25px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    position: relative;
    z-index: 1;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Content Area */
.privacy-content {
    padding: 50px;
}

.privacy-section {
    margin-bottom: 45px;
    padding-bottom: 35px;
    border-bottom: 1px solid #edf2f7;
}

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

.privacy-section-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.privacy-icon {
    width: 45px;
    height: 45px;
    background: rgba(243, 105, 32, 0.1);
    color: #F36920;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.privacy-section h2 {
    font-size: 24px;
    font-weight: 700;
    color: #0A3D91;
}

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

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

.privacy-section ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

/* Custom Checkmark for lists */
.privacy-section ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 3px;
    color: #2ecc71;
    font-size: 14px;
    background: rgba(46, 204, 113, 0.1);
    width: 20px; height: 20px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
}

.privacy-contact-box {
    background: #f8fbff;
    border: 1px solid #e1eaf7;
    padding: 25px;
    border-radius: 12px;
    margin-top: 20px;
}

.privacy-contact-box p {
    margin-bottom: 10px;
    color: #333;
}

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

.privacy-contact-box strong { color: #0A3D91; }

/* Mobile Responsive */
@media (max-width: 768px) {
    .privacy-wrapper { padding: 20px 10px; }
    .privacy-header { padding: 20px 15px; }
    .privacy-header h1 { font-size: 22px; margin-bottom: 8px; }
    .privacy-header p { font-size: 13px; line-height: 1.4; }
    .last-updated { font-size: 11px; padding: 5px 12px; margin-top: 12px; }
    
    .privacy-content { padding: 20px 15px; }
    .privacy-section { margin-bottom: 20px; padding-bottom: 15px; }
    .privacy-section-header { gap: 8px; margin-bottom: 8px; }
    .privacy-icon { width: 28px; height: 28px; font-size: 12px; border-radius: 6px; }
    .privacy-section h2 { font-size: 16px; line-height: 1.3; margin: 0; }
    
    .privacy-section p { font-size: 13px; line-height: 1.45; margin-bottom: 8px; }
    .privacy-section ul { margin-top: 0; margin-bottom: 8px; }
    .privacy-section ul li { 
        font-size: 13px; 
        line-height: 1.45; 
        margin-bottom: 6px; 
        padding-left: 22px; 
    }
    .privacy-section ul li::before {
        width: 14px; height: 14px;
        font-size: 8px;
        top: 3px;
    }
}
