/* ================================
   Breakout Mantra – Complaint Data
================================ */

.policy-section {
    background: radial-gradient(circle at top, #121212, #0a0a0a 60%);
    padding: 120px 20px 80px;
    font-family: 'Poppins', sans-serif;
    color: #e0e0e0;
}

/* Heading */
.policy-section h2 {
    text-align: center;
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 18px;
    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);
}

/* Note */
.policy-note {
    text-align: center;
    font-size: 15px;
    font-weight: 500;
    color: #f5d68b;
    margin-bottom: 45px;
    letter-spacing: 0.6px;
}

/* Card */
.policy-card {
    max-width: 1100px;
    margin: auto;
    background: linear-gradient(180deg, #111111, #0d0d0d);
    border-radius: 22px;
    padding: 35px 35px 40px;
    border: 1px solid rgba(212, 164, 60, 0.35);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
    overflow-x: auto;
}

/* Table */
.policy-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 900px;
}

/* Head */
.policy-table thead th {
    font-size: 14.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    padding: 16px 14px;
    color: #f7d889;
    border-bottom: 1px solid rgba(212, 164, 60, 0.4);
    background: rgba(212, 164, 60, 0.06);
    text-align: center;
}

/* Body */
.policy-table tbody td {
    font-size: 14.5px;
    color: #d6d6d6;
    padding: 14px 14px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

/* Hover row */
.policy-table tbody tr:hover td {
    background: rgba(212, 164, 60, 0.05);
}

/* First column emphasis */
.policy-table tbody td:first-child {
    font-weight: 600;
    color: #f5d68b;
}

/* Text center utility */
.text-center {
    text-align: center;
    font-size: 15px;
    font-weight: 700;
    color: #f7d889;
    padding-top: 18px;
}

/* ================= Responsive ================= */

@media (max-width: 768px) {

    .policy-section {
        padding: 90px 15px 60px;
    }

    .policy-section h2 {
        font-size: 30px;
    }

    .policy-note {
        font-size: 14px;
        margin-bottom: 35px;
    }

    .policy-card {
        padding: 25px 20px 30px;
    }

    .policy-table thead th,
    .policy-table tbody td {
        font-size: 13.5px;
        padding: 12px 10px;
    }
}
