/* ================================
   Breakout Mantra – Grievance Redressal
================================ */

.policy-section {
    background: radial-gradient(circle at top, #121212, #0a0a0a 60%);
    padding: 110px 20px 80px;
    font-family: 'Poppins', sans-serif;
    color: #e0e0e0;
}

/* Section Title */
.policy-section h2 {
    text-align: center;
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 50px;
    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: 1000px;
    margin: auto;
    background: linear-gradient(180deg, #111111, #0d0d0d);
    border-radius: 22px;
    padding: 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: 780px;
}

/* Table Head */
.policy-table thead th {
    padding: 16px 14px;
    font-size: 14.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #f7d889;
    border-bottom: 1px solid rgba(212, 164, 60, 0.35);
    background: rgba(255, 255, 255, 0.02);
}

/* Table Body */
.policy-table tbody td {
    padding: 16px 14px;
    font-size: 15px;
    line-height: 1.7;
    color: #d6d6d6;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* Email Highlight */
.policy-table td:nth-child(3) {
    color: #f5d68b;
    font-weight: 500;
}

/* Contact No Highlight */
.policy-table td:nth-child(4) {
    color: #f7d889;
    font-weight: 600;
}

/* Row Hover */
.policy-table tbody tr:hover {
    background: rgba(212, 164, 60, 0.06);
    transition: all 0.25s ease;
}

/* ================= Responsive ================= */

@media (max-width: 768px) {

    .policy-section {
        padding: 90px 15px 60px;
    }

    .policy-section h2 {
        font-size: 30px;
    }

    .policy-card {
        padding: 22px 18px;
    }

    .policy-table {
        min-width: 720px;
    }

    .policy-table thead th,
    .policy-table tbody td {
        font-size: 14px;
        padding: 14px 12px;
    }
}
