/* Privacy Hero Section */
.privacy-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #49ce95;
    overflow: hidden;
    padding: 120px 0 80px;
}

.privacy-header {
    text-align: center;
    color: white;
    position: relative;
    z-index: 2;
}

.privacy-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    animation: float 3s ease-in-out infinite;
}

.privacy-icon i {
    font-size: 3rem;
    color: white;
}

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

.privacy-header h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.privacy-subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.privacy-meta {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.privacy-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    opacity: 0.9;
    background: rgba(255, 255, 255, 0.15);
    padding: 10px 20px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.privacy-meta i {
    font-size: 1.1rem;
}

/* Privacy Content Section */
.privacy-content {
    padding: 80px 0;
    background: #f8f9fa;
}

.privacy-policy {
    max-width: 900px;
    margin: 0 auto;
}

/* Privacy Cards */
.privacy-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.privacy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: #49ce95;
}

.privacy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: #49ce95;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.card-icon i {
    font-size: 1.8rem;
    color: white;
}

.privacy-card h2 {
    color: #2d1b4e;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    margin-top: 0;
}

.privacy-card h3 {
    color: #49ce95;
    font-size: 1.3rem;
    font-weight: 600;
    margin-top: 25px;
    margin-bottom: 15px;
}

.privacy-card p {
    color: #4a5568;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

.privacy-card ul {
    margin: 20px 0;
    padding-left: 0;
    list-style: none;
}

.privacy-card li {
    color: #4a5568;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 15px;
    padding-left: 35px;
    position: relative;
}

.privacy-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
    background: #49ce95;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 0.9rem;
}

.privacy-card a {
    color: #49ce95;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.privacy-card a:hover {
    border-bottom-color: #49ce95;
}

.privacy-card strong {
    color: #2d1b4e;
    font-weight: 700;
}

/* Disclaimer Box */
.disclaimer-box {
    background: rgba(73, 206, 149, 0.1);
    border-left: 4px solid #49ce95;
    padding: 25px;
    border-radius: 12px;
    margin: 25px 0;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.disclaimer-box i {
    font-size: 1.5rem;
    color: #49ce95;
    flex-shrink: 0;
    margin-top: 3px;
}

.disclaimer-box p {
    margin: 0;
    color: #2d1b4e;
}

/* Contact CTA */
.contact-cta {
    background: #ff897d;
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    color: white;
    margin-top: 50px;
}

.contact-cta i {
    font-size: 3rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.contact-cta h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.contact-cta p {
    font-size: 1.2rem;
    opacity: 0.95;
    margin-bottom: 30px;
    color: white;
}

.contact-cta .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    background: white;
    color: #ff897d;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.contact-cta .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

/* Scroll Reveal Animation */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .privacy-hero {
        min-height: 50vh;
        padding: 100px 0 60px;
    }

    .privacy-header h1 {
        font-size: 2.5rem;
    }

    .privacy-subtitle {
        font-size: 1.1rem;
    }

    .privacy-icon {
        width: 80px;
        height: 80px;
    }

    .privacy-icon i {
        font-size: 2.5rem;
    }

    .privacy-meta {
        flex-direction: column;
        gap: 15px;
    }

    .privacy-card {
        padding: 30px 25px;
    }

    .privacy-card h2 {
        font-size: 1.5rem;
    }

    .card-icon {
        width: 50px;
        height: 50px;
    }

    .card-icon i {
        font-size: 1.5rem;
    }

    .disclaimer-box {
        flex-direction: column;
        gap: 15px;
    }

    .contact-cta {
        padding: 40px 25px;
    }

    .contact-cta h3 {
        font-size: 1.6rem;
    }

    .contact-cta i {
        font-size: 2.5rem;
    }
}
