/* ===============================
   Privacy Policy Page Styles
================================*/
.privacy-policy-section {
    position: relative;
    background: linear-gradient(180deg, #f8faff 0%, #ffffff 100%);
    min-height: 100vh;
    padding: 60px 0;
    overflow: hidden;
}

.policy-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 50px;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    animation: fadeInCard 1s ease-in-out;
}

.policy-header {
    text-align: center;
    margin-bottom: 40px;
}

.policy-header .policy-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
    animation: float 3s ease-in-out infinite;
}

.policy-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2a2a72;
}

.policy-header .subtitle {
    color: #6c757d;
    font-size: 1.1rem;
}

.policy-content h3 {
    color: #2a2a72;
    margin-top: 25px;
    font-weight: 600;
    border-left: 4px solid #4e8cff;
    padding-left: 10px;
}

.policy-content p, .policy-content ul {
    font-size: 1rem;
    color: #4a4a4a;
    line-height: 1.8;
    margin-top: 10px;
}

.policy-content ul li {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 6px;
}

.contact-box {
    background: #f8faff;
    border: 1px solid #e1e6ff;
    border-radius: 12px;
    padding: 20px;
    margin-top: 20px;
}

/* Background wave */
.wave-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 1;
}

/* Animations */
@keyframes fadeInCard {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    opacity: 0;
    animation: fadeIn 1.2s ease forwards;
}
.fade-in-delay {
    opacity: 0;
    animation: fadeIn 1.5s ease 0.3s forwards;
}
.fade-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s ease 0.5s forwards;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* Responsive */
@media (max-width: 768px) {
    .policy-card {
        padding: 30px 20px;
    }
    .policy-header h1 {
        font-size: 2rem;
    }
}
