/* ================================
   Breakout Mantra – Disclaimer
================================ */

.policy-section {
    background: radial-gradient(circle at top, #121212, #0a0a0a 60%);
    padding: 110px 20px 80px;
    font-family: 'Poppins', sans-serif;
    color: #e0e0e0;
}

/* Heading */
.policy-section h2 {
    text-align: center;
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 45px;
    text-transform: uppercase;
    letter-spacing: 2px;

    background: linear-gradient(180deg, #ffe9b0, #d4a43c, #9c6f00);
    -webkit-background-clip: text;
    color: transparent;

    text-shadow: 0 0 14px rgba(255, 215, 120, 0.35);
}

/* Card */
.policy-card {
    max-width: 900px;
    margin: auto;
    background: linear-gradient(180deg, #111111, #0d0d0d);
    border-radius: 22px;
    padding: 45px 50px;
    border: 1px solid rgba(212, 164, 60, 0.35);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
}

/* Paragraphs */
.policy-card p {
    font-size: 15.5px;
    line-height: 1.9;
    color: #d6d6d6;
    margin-bottom: 22px;
    text-align: center;
}

/* Strong highlight */
.policy-card strong {
    color: #f5d68b;
    font-weight: 600;
}

/* Highlight text */
.highlight-text {
    margin-top: 35px;
    padding: 22px 25px;
    background: linear-gradient(135deg, rgba(212,164,60,0.12), rgba(0,0,0,0.2));
    border-left: 4px solid #d4a43c;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 600;
    color: #f7d889;
    text-align: center;
    box-shadow: inset 0 0 18px rgba(212, 164, 60, 0.15);
}

/* ================= Responsive ================= */

@media (max-width: 768px) {

    .policy-section {
        padding: 90px 15px 60px;
    }

    .policy-section h2 {
        font-size: 30px;
    }

    .policy-card {
        padding: 30px 22px;
    }

    .policy-card p {
        font-size: 14.5px;
    }

    .highlight-text {
        font-size: 15px;
        padding: 18px 18px;
    }
}
