/* =====================================================
   POLICY & LEGAL PAGES STYLES
   ===================================================== */

.policy-page {
    background-color: #fff;
    color: #1a1a1a;
    padding-bottom: 100px;
}

/* ── Hero / Header ── */
.policy-hero {
    background-color: #000;
    height: 50vh;
    height: 50dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.policy-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

.policy-tag {
    font-family: "GeneralSans-Medium", sans-serif;
    color: #fff;
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 20px;
    opacity: 0.7;
    /* visible by default */
}

.policy-title {
    font-family: "Nocturnal-Light", sans-serif;
    color: #fff;
    font-size: clamp(32px, 5vw, 64px);
    letter-spacing: 5px;
    text-transform: uppercase;
    margin: 0;
}

/* ── Content Container ── */
.policy-body {
    max-width: 1000px;
    margin: 0 auto;
    padding: 80px 24px 0;
    position: relative;
}

/* ===============================
   POLICY CONTENT — IMPROVED SPACING
   =============================== */

.policy-content-section {
    margin-bottom: 70px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
}

.policy-content-section.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Headings */
.policy-body h2 {
    font-family: "Nocturnal-Light", sans-serif;
    font-size: 24px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #111;

    margin-top: 50px;
    margin-bottom: 18px;

    line-height: 1.3;
}

/* First heading top spacing remove */
.policy-content-section h2:first-child {
    margin-top: 0;
}

/* Paragraphs */
.policy-body p {
    font-family: "GeneralSans-Medium", sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #444;

    margin-bottom: 22px;
    text-align: justify;
}

/* Lists */
.policy-body ul,
.policy-body ol {
    margin-top: 10px;
    margin-bottom: 26px;
    padding-left: 22px;
}

/* List items */
.policy-body li {
    font-family: "GeneralSans-Medium", sans-serif;
    font-size: 16px;
    line-height: 1.75;
    color: #444;

    margin-bottom: 12px;
}

/* Bullet color */
.policy-body ul li::marker {
    color: #8f4555;
}

/* Strong text */
.policy-body strong {
    color: #111;
    font-weight: 600;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .policy-hero {
        padding: 140px 0 80px;
    }

    .policy-body {
        padding: 40px 20px 0;
    }
    .policy-page{
        padding-bottom: 50px;
    }

    .policy-body h2 {
        font-size: 20px;
    }

    .policy-body p,
    .policy-body li {
        font-size: 15px;
    }
}