
 
    /* BASE */
    .terms-section {
        padding: 100px 0;
        background: #f5f7fb;
        font-family: 'Poppins', sans-serif;
    }

    /* HEADER */
    .page-header {
        text-align: center;
        margin-bottom: 60px;
    }

    .page-header h1 {
        font-size: 42px;
        font-weight: 800;
        color: #111;
        position: relative;
    }

    .page-header h1::after {
        content: "";
        width: 70px;
        height: 4px;
        background: linear-gradient(90deg, #f29727, #ff7a18);
        display: block;
        margin: 14px auto 0;
        border-radius: 10px;
    }

    .page-header p {
        color: #666;
        margin-top: 10px;
        font-size: 15px;
    }

    /* CARD */
    .terms-box {
        background: #fff;
        padding: 35px 35px 30px;
        margin-bottom: 25px;
        border-radius: 14px;
        border: 1px solid #eaeaea;
        transition: all 0.35s ease;
        position: relative;
    }

    /* HOVER EFFECT */
    .terms-box:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
    }

    /* LEFT ACCENT LINE */
    .terms-box::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 4px;
        height: 0%;
        background: linear-gradient(180deg, #f29727, #ff7a18);
        transition: 0.4s;
        border-radius: 4px;
    }

    .terms-box:hover::before {
        height: 100%;
    }

    /* MAIN HEADING */
    .terms-box h2 {
        font-size: 22px;
        margin-bottom: 5px;
        color: #111;
        font-weight: 700;
    }

    /* SUB HEADING */
    .sub-heading {
        font-size: 16px;
        font-weight: 600;
        margin-top: 20px;
        margin-bottom: 8px;
        color: #222;
    }

    /* LIST ALIGNMENT FIX */
    .styled-list {
        padding-left: 18px;
        margin-bottom: 12px;
    }

    .styled-list li {
        margin-bottom: 8px;
        color: #555;
        line-height: 1.6;
        transition: 0.2s;
    }

    /* LIST HOVER MICRO EFFECT */
    .styled-list li:hover {
        color: #111;
        transform: translateX(4px);
    }

    /* HIGHLIGHT BOX */
    .highlight-box {
        background: #fff4e6;
        padding: 15px 18px;
        border-left: 4px solid #f29727;
        margin-top: 15px;
        border-radius: 8px;
        font-size: 14px;
        transition: 0.3s;
    }

    .highlight-box:hover {
        transform: scale(1.02);
    }

    /* DANGER BOX */
    .highlight-box.danger {
        background: #ffeaea;
        border-color: #e63946;
    }

    /* CONTACT */
    .contact-card {
        background: #0c1e2c;
        padding: 30px;
        border-radius: 12px;
        color: #fff;
        /* max-width: 500px; */
    }

    .contact-header h3 {
        margin-bottom: 5px;
    }

    .contact-header p {
        font-size: 14px;
        opacity: 0.8;
        margin-bottom: 20px;
    }

    .contact-item {
        display: flex;
        gap: 12px;
        margin-bottom: 18px;
        align-items: flex-start;
    }

    .icon svg {
        width: 20px;
        height: 20px;
        fill: #ff7a18;
        /* 🔥 IMPORTANT */
        flex-shrink: 0;
        margin-top: -9px;
    }

    .contact-item strong {
        font-size: 15px;
    }

    .contact-item div {
        font-size: 14px;
        line-height: 1.5;
    }

    .contact-item a {
        color: #fff;
        text-decoration: none;
    }

    .contact-item a:hover {
        color: #ff7a18;
    }

    /* MODERN LIST */
    .styled-list {
        list-style: none;
        padding: 0;
        margin: 15px 0;
    }

    /* EACH ITEM */
    .styled-list li {
        position: relative;
        padding-left: 32px;
        margin-bottom: 12px;
        font-size: 14.5px;
        color: #555;
        line-height: 1.7;
        transition: all 0.3s ease;
    }

    /* CUSTOM ICON BULLET */
    .styled-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 4px;
    font-size: 11px;
    color: #fff;
    background: linear-gradient(135deg, #f29727, #ff7a18);
    width: 15px;
    height: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
    /* HOVER EFFECT */
    .styled-list li:hover {
        color: #111;
        transform: translateX(6px);
    }

    /* OPTIONAL: RIGHT SIDE STYLE (ADVANCE LOOK) */
    .terms-box {
        display: flex;
        flex-direction: column;
    }

    /* IF YOU WANT LIST SHIFTED SLIGHT RIGHT */
    .terms-box ul {
        margin-left: 5px;
    }

    /* SMOOTH FADE-IN (OPTIONAL BUT NICE) */
    .terms-box {
        animation: fadeUp 0.6s ease both;
    }

    @keyframes fadeUp {
        from {
            opacity: 0;
            transform: translateY(25px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
 