/* Privacy Policy Styles */
.privacy-hero {
    position: relative;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #fff;
    overflow: hidden;
}

.privacy-hero-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(46, 163, 214, 0.1) 0%, transparent 50%);
    transform: translate(-50%, -50%);
    animation: pulseBg 10s infinite alternate cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes pulseBg {
    0% { transform: translate(-50%, -50%) scale(1); }
    100% { transform: translate(-50%, -50%) scale(1.1); }
}

.privacy-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.privacy-hero h1 span {
    color: #2ea3d6;
}

.shield-icon i {
    font-size: 3rem;
    color: #2ea3d6;
    filter: drop-shadow(0 0 10px rgba(46, 163, 214, 0.5));
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #cbd5e1;
    max-width: 600px;
    margin: 0 auto;
}

/* Content Area */
.privacy-content-section {
    background-color: #f8fafc;
    position: relative;
    padding-bottom: 80px;
}

.privacy-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    margin-top: -40px;
    position: relative;
    z-index: 10;
}

.policy-header p {
    font-size: 1.05rem;
    color: #475569;
}

.policy-block {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #f1f5f9;
}

.policy-block h3 {
    font-size: 1.4rem;
    color: #0f172a;
    font-weight: 600;
    margin-bottom: 20px;
}

.policy-block p {
    color: #475569;
    line-height: 1.8;
}

.policy-block ul {
    list-style: none;
    padding-left: 0;
    margin-top: 15px;
}

.policy-block ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: #475569;
    line-height: 1.7;
}

.policy-block ul li i {
    position: absolute;
    left: 0;
    top: 6px;
    color: #2ea3d6;
    font-size: 0.9rem;
}

.policy-block ul li strong {
    color: #1e293b;
    font-weight: 600;
}

@media (max-width: 768px) {
    .privacy-hero h1 {
        font-size: 2.2rem;
    }
    
    .privacy-card {
        padding: 30px 20px;
        margin-top: -20px;
    }
    
    .policy-block h3 {
        font-size: 1.25rem;
    }
}
