/* ================================================= */
/* PRIVACY POLICY PAGE STYLES                        */
/* ================================================= */

/* --- 1. ULTRA-SLIM HERO SECTION --- */
.privacy-hero-royal {
    position: relative;
    padding: 15px 0; 
    margin-bottom: 0; 
    background-color: var(--astro-primary); 
    border-bottom: 5px solid var(--astro-accent);
    color: white;
    overflow: hidden; 
}

/* Giant spinning dots covering the whole header */
.mandala-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 3000px; 
    height: 3000px;
    background-image: radial-gradient(circle, var(--astro-accent) 2px, transparent 2.5px);
    background-size: 35px 35px;
    opacity: 0.15; 
    z-index: 1;
    animation: spin-mandala 90s linear infinite;
}

@keyframes spin-mandala {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.royal-hero-title {
    font-size: 2.2rem; 
    font-weight: 900;
    color: #fff;
    margin-bottom: 5px;
    margin-top: 20px;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
}

.separator-line {
    width: 60px; height: 3px; 
    background-color: var(--astro-accent);
    border-radius: 2px; margin: 8px auto;
}

.royal-hero-sub {
    font-size: 0.95rem; 
    color: #eee;
    max-width: 800px; margin: 0 auto;
}

/* --- MOBILE TARGET (Phones/Tablets) --- */
@media (max-width: 768px) {
    .privacy-hero-royal { padding: 10px 0; }
    .royal-hero-title { font-size: 1.5rem; margin-bottom: 3px; margin-top: 10px;}
    .separator-line { margin: 5px auto; height: 2px; }
    .royal-hero-sub { font-size: 0.8rem; }
}

/* --- 2. PRIVACY CONTENT SECTION --- */
.privacy-section {
    position: relative;
    z-index: 5;
    padding-top: 50px; 
    padding-bottom: 100px;
    background-color: var(--astro-light);
}

.privacy-card {
    background: #fff;
    border-radius: 15px;
    padding: 50px;
    border: 2px solid var(--astro-primary); 
    box-shadow: 0 10px 30px rgba(92, 0, 0, 0.08); 
}

.privacy-last-updated {
    font-size: 0.9rem;
    color: #666;
    font-weight: 600;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.privacy-heading {
    color: var(--astro-primary);
    font-weight: 800;
    font-size: 1.5rem;
    margin-top: 30px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.privacy-heading i {
    color: var(--astro-accent);
    font-size: 1.2rem;
}

.privacy-text {
    font-size: 1.05rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 20px;
    font-weight: 500;
}

.privacy-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.privacy-list li {
    font-size: 1.05rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    font-weight: 500;
}

.privacy-list li::before {
    content: '\f101'; /* FontAwesome double arrow */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--astro-accent);
}

/* Mobile Adjustments for Content */
@media (max-width: 768px) {
    .privacy-card {
        padding: 25px;
    }
    .privacy-heading {
        font-size: 1.3rem;
    }
    .privacy-text, .privacy-list li {
        font-size: 0.95rem;
    }
}