/* ===== PRIVACY PAGE SPECIFIC ===== */

.privacy-hero {
    background: #060d18;
    padding: 60px 0 50px;
    text-align: center;
    border-bottom: 1px solid rgba(0,212,255,0.06);
    position: relative;
    overflow: hidden;
}
.privacy-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 30% 50%, rgba(0,212,255,0.04) 0%, transparent 60%),
        radial-gradient(circle at 70% 50%, rgba(123,47,252,0.04) 0%, transparent 60%);
    pointer-events: none;
}
.privacy-hero h1 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    color: #fff;
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, #7b2ffc 0%, #00d4ff 50%, #7b2ffc 100%);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: holographicTitle 4s ease-in-out infinite;
    filter: drop-shadow(0 0 40px rgba(123,47,252,0.15));
}
.privacy-hero p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.6);
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
@keyframes holographicTitle {
    0%,100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.privacy-section {
    padding: 60px 0;
    background: #f8fafc;
}
.privacy-card {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 50px;
    background: rgba(255,255,255,0.65);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.7);
    border-bottom: 2px solid rgba(255,255,255,0.5);
    box-shadow: 0 8px 32px rgba(0,0,0,0.04), inset 0 2px 0 rgba(255,255,255,0.9);
    border-radius: 24px;
}

.privacy-card h3 {
    font-size: 1.4rem;
    color: #0a2647;
    margin: 30px 0 12px;
    padding-bottom: 6px;
    border-bottom: 2px solid rgba(0,212,255,0.15);
}
.privacy-card h3:first-of-type {
    margin-top: 0;
}
.privacy-card p {
    color: #3a4a5a;
    line-height: 1.8;
    margin-bottom: 16px;
}
.privacy-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 16px 0;
}
.privacy-card ul li {
    padding: 6px 0 6px 28px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="%2300d4ff" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"/></svg>') left center no-repeat;
    background-size: 18px;
    color: #3a4a5a;
    line-height: 1.6;
}
.privacy-card a {
    color: #0a2647;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(0,212,255,0.3);
}
.privacy-card a:hover {
    color: #00d4ff;
    border-bottom-color: #00d4ff;
}
.privacy-acknowledgment {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid rgba(0,212,255,0.1);
    font-style: italic;
    text-align: center;
    color: #5a6a7a;
}

/* === Responsive === */
@media (max-width: 768px) {
    .privacy-card {
        padding: 25px 20px;
        border-radius: 18px;
    }
    .privacy-card h3 {
        font-size: 1.2rem;
    }
}