/* Privacy Hero Section */
.privacy-hero {
    height: 60vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(to bottom, var(--space-dark), var(--deep-space));
    color: white;
    margin-top: 80px;
}

.privacy-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, var(--neon-violet-glow) 0%, transparent 30%),
        radial-gradient(circle at 80% 70%, var(--cyber-aqua-glow) 0%, transparent 30%);
    z-index: 0;
}

.privacy-hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.privacy-hero h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(to right, var(--starlight), var(--cyber-aqua));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px var(--cyber-aqua-glow);
    animation: fadeInUp 1s ease;
}

.privacy-hero p {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.2s forwards;
    opacity: 0;
}

/* Privacy Content Section */
.privacy-content {
    background-color: var(--deep-space);
    position: relative;
    overflow: hidden;
}

.privacy-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.privacy-section {
    margin-bottom: 4rem;
    padding: 2.5rem;
    background: var(--space-light);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--glass-border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeInUp 0.6s ease-out forwards;
}

.privacy-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 25px var(--neon-violet-glow);
}

.privacy-section:nth-child(2) {
    animation-delay: 0.2s;
}

.privacy-section:nth-child(3) {
    animation-delay: 0.4s;
}

.privacy-section h2 {
    font-size: 2rem;
    color: var(--starlight);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 10px;
    text-shadow: 0 0 10px var(--cyber-aqua-glow);
}

.privacy-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--neon-violet), var(--cyber-aqua));
    border-radius: 2px;
}

.privacy-section h3 {
    font-size: 1.5rem;
    color: var(--starlight);
    margin: 2rem 0 1rem;
    text-shadow: 0 0 8px var(--cyber-aqua-glow);
}

.privacy-section p {
    margin-bottom: 1.2rem;
    color: var(--cosmic-text);
    line-height: 1.8;
}

.privacy-section ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.privacy-section li {
    margin-bottom: 0.8rem;
    color: var(--cosmic-text);
    line-height: 1.7;
    position: relative;
}

.privacy-section li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: -1.5rem;
    color: var(--matrix-green);
    text-shadow: 0 0 8px var(--matrix-green-glow);
}

.highlight-box {
    background: rgba(249, 115, 22, 0.1);
    border-left: 4px solid var(--electric-orange);
    padding: 1.5rem;
    border-radius: 0 8px 8px 0;
    margin: 2rem 0;
    box-shadow: 0 0 15px var(--electric-orange-glow);
}

.highlight-box p {
    margin-bottom: 0;
    color: var(--starlight);
    font-weight: 500;
}

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

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .privacy-hero h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 992px) {
    .privacy-hero h1 {
        font-size: 3rem;
    }
    
    .privacy-hero p {
        font-size: 1.25rem;
    }
    
    .privacy-section h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .privacy-hero {
        min-height: 400px;
    }
    
    .privacy-hero h1 {
        font-size: 2.5rem;
    }
    
    .privacy-hero p {
        font-size: 1.1rem;
    }
    
    .privacy-section {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .privacy-hero h1 {
        font-size: 2rem;
    }
    
    .privacy-section h2 {
        font-size: 1.6rem;
    }
    
    .privacy-section h3 {
        font-size: 1.3rem;
    }
    
    .privacy-section {
        padding: 1.2rem;
        margin-bottom: 2.5rem;
    }
    
    .highlight-box {
        padding: 1rem;
        margin: 1.5rem 0;
    }
}
