/* ================================================================
   ISLAMICSERIES — Privacy Policy Page Styles
   Premium dark theme card layout, glassmorphism, responsive typography.
   ================================================================ */

.privacy-main-section {
    padding-top: clamp(3rem, 6vw, 4rem);
    padding-bottom: 6rem;
    position: relative;
    z-index: 5;
}
.privacy-hero-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem auto;
}
.privacy-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-primary);
}
.privacy-desc {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
}
.privacy-content-card {
    max-width: 850px;
    margin: 0 auto;
    padding: 3rem;
    border-radius: var(--r-lg);
    background: var(--bg-card-gradient);
    border: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}
.privacy-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.04) 0%, transparent 70%);
    top: -150px;
    right: -150px;
    pointer-events: none;
}
.privacy-body {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1rem;
}
.privacy-section {
    margin-bottom: 2.5rem;
}
.privacy-section:last-child {
    margin-bottom: 0;
}
.privacy-section h2 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent-light);
    margin-bottom: 1rem;
    letter-spacing: -0.3px;
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
    padding-bottom: 0.5rem;
}
.privacy-section p {
    margin-bottom: 1.2rem;
}
.privacy-section ul {
    margin-bottom: 1.2rem;
    padding-left: 1.5rem;
}
.privacy-section li {
    margin-bottom: 0.6rem;
}
.privacy-section li strong {
    color: var(--text-primary);
}

@media (max-width: 768px) {
    .privacy-content-card {
        padding: 1.8rem;
    }
    .privacy-section h2 {
        font-size: 1.2rem;
    }
}
