/* =========================================
   Breakout Mantra – Investor Complaint Disclosure
========================================= */

.policy-section {
    background: radial-gradient(circle at top, #121212, #0a0a0a 60%);
    padding: 110px 20px 80px;
    font-family: 'Poppins', sans-serif;
    color: #e0e0e0;
}

/* Section Heading */
.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 Wrapper */
.policy-card {
    max-width: 1000px;
    margin: auto;
    background: linear-gradient(180deg, #111111, #0d0d0d);
    border-radius: 22px;
    padding: 36px 40px;
    border: 1px solid rgba(212, 164, 60, 0.35);
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.75);
    overflow-x: hidden;
}

/* Small Section Title */
.policy-card h5 {
    margin: 38px 0 18px;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.6px;
    color: #f5d68b;
    text-transform: uppercase;
}

/* ================= Tables ================= */

.policy-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 10px;
}

/* Key–Value Table */
.policy-table tr th {
    width: 35%;
    padding: 15px 16px;
    text-align: left;
    font-size: 14.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: #f7d889;
    border-bottom: 1px solid rgba(212, 164, 60, 0.3);
    background: rgba(255, 255, 255, 0.02);
}

.policy-table tr td {
    padding: 15px 16px;
    font-size: 15px;
    color: #dedede;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Summary Table Header */
.policy-table thead th {
    padding: 16px 14px;
    font-size: 14.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    color: #f7d889;
    border-bottom: 1px solid rgba(212, 164, 60, 0.35);
    background: rgba(255, 255, 255, 0.03);
}

/* Summary Table Body */
.policy-table tbody td {
    padding: 15px 14px;
    font-size: 15px;
    color: #d6d6d6;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* Center numeric values */
.policy-table tbody td:not(:first-child) {
    text-align: center;
    font-weight: 600;
}

/* Hover Effect */
.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: 24px 18px;
    }

    .policy-card h5 {
        font-size: 18px;
    }

    .policy-table th,
    .policy-table td {
        font-size: 14px;
        padding: 13px 12px;
    }

    .policy-table {
        display: block;
        width: 100%;
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
        position: relative;
    }

    .policy-table thead,
    .policy-table tbody,
    .policy-table th,
    .policy-table td,
    .policy-table tr {
        white-space: nowrap;
    }
    .policy-table::after {
        content: "← Swipe →";
        position: sticky;
        right: 0;
        bottom: -35px;
        display: block;
        text-align: right;
        font-size: 12px;
        color: rgba(247, 216, 137, 0.7);
        padding-top: 6px;
    }
}
