/* ======================================
   Breakout Mantra – Cancellation & Refund
====================================== */

.cancellation-refund {
    background: radial-gradient(circle at top, #121212, #0a0a0a 60%);
    padding: 120px 0 80px;
    font-family: 'Poppins', sans-serif;
    color: #e0e0e0;
}

.cancellation-refund .container {
    max-width: 1100px;
}

/* Title */
.cancellation-refund h2 {
    font-size: 42px;
    font-weight: 800;
    text-align: center;
    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 */
.cancellation {
    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);
    margin-bottom: 40px;
}

/* Section Headings */
.cancellation h5 {
    font-size: 18px;
    font-weight: 600;
    color: #f5d68b;
    margin-bottom: 22px;
}

/* Shared List Style */
.insector-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.insector-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 15.5px;
    line-height: 1.8;
    color: #d6d6d6;
    margin-bottom: 20px;
    padding: 18px 20px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.02);
    transition: all 0.3s ease;
}

.insector-list li:hover {
    background: rgba(212, 164, 60, 0.06);
    transform: translateX(6px);
}

/* Icons */
.insector-list li i {
    color: #d4a43c;
    font-size: 18px;
    margin-top: 5px;
    text-shadow: 0 0 10px rgba(255, 215, 100, 0.4);
}

/* Highlight Text */
.insector-list b {
    color: #f5d68b;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {

    .cancellation-refund {
        padding: 90px 0 60px;
    }

    .cancellation-refund h2 {
        font-size: 30px;
    }

    .cancellation {
        padding: 30px 22px;
    }

    .insector-list li {
        font-size: 14.5px;
        padding: 15px 16px;
    }
}
