.privacy-hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 8rem 5% 4rem;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(102, 126, 234, 0.05) 0%, transparent 100%);
}

.privacy-hero-content {
    max-width: 900px;
    text-align: center;
    z-index: 1;
    position: relative;
}

.privacy-hero h1 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #a0a0a0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    letter-spacing: -2px;
    animation: fadeInUp 1s ease forwards;
}

.effective-date {
    font-size: 1.1rem;
    color: #667eea;
    font-weight: 600;
    animation: fadeInUp 1s ease forwards 0.2s;
    opacity: 0;
}

.privacy-content {
    padding: 4rem 5% 8rem;
    position: relative;
}

.privacy-container {
    max-width: 900px;
    margin: 0 auto;
}

.privacy-intro {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.05) 100%);
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease forwards 0.4s;
    opacity: 0;
}

.privacy-intro p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #c0c0c0;
    margin: 0;
}

.privacy-section {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 1s ease forwards;
    opacity: 0;
}

.privacy-section:nth-child(2) { animation-delay: 0.5s; }
.privacy-section:nth-child(3) { animation-delay: 0.6s; }
.privacy-section:nth-child(4) { animation-delay: 0.7s; }
.privacy-section:nth-child(5) { animation-delay: 0.8s; }
.privacy-section:nth-child(6) { animation-delay: 0.9s; }
.privacy-section:nth-child(7) { animation-delay: 1s; }
.privacy-section:nth-child(8) { animation-delay: 1.1s; }
.privacy-section:nth-child(9) { animation-delay: 1.2s; }
.privacy-section:nth-child(10) { animation-delay: 1.3s; }

.privacy-section:hover {
    transform: translateY(-5px);
    border-color: rgba(102, 126, 234, 0.3);
    box-shadow: 0 15px 50px rgba(102, 126, 234, 0.15);
}

.section-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.privacy-section h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffffff;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.privacy-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #b0b0b0;
    margin-bottom: 1rem;
}

.privacy-section ul {
    list-style: none;
    margin-top: 1.5rem;
    padding-left: 0;
}

.privacy-section ul li {
    font-size: 1.05rem;
    color: #b0b0b0;
    margin-bottom: 0.8rem;
    padding-left: 2rem;
    position: relative;
    line-height: 1.6;
}

.privacy-section ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
    font-size: 1.2rem;
}

.privacy-section a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.privacy-section a:hover {
    color: #764ba2;
    text-decoration: underline;
}

.privacy-section strong {
    color: #ffffff;
    font-weight: 600;
}

.contact-box {
    background: rgba(102, 126, 234, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 1.5rem;
    font-size: 1.1rem;
}

.contact-box strong {
    color: #667eea;
    margin-right: 0.5rem;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .privacy-hero h1 {
        font-size: 2.5rem;
    }

    .privacy-intro,
    .privacy-section {
        padding: 2rem 1.5rem;
    }

    .privacy-section h2 {
        font-size: 1.5rem;
    }

    .section-icon {
        font-size: 2rem;
    }
}