/* =========================
SERVICES FEES SECTION
========================= */

#services-fees-title{
    font-size:52px;
    font-weight:800;
    color:#0f172a;
    margin-bottom:30px;
    position:relative;
    padding-bottom:18px;
    line-height:1.2;
}

#services-fees-title::after{
    content:'';
    position:absolute;
    left:0;
    bottom:0;
    width:120px;
    height:6px;
    border-radius:30px;
    background:linear-gradient(135deg,#ff6b00,#ff2e63);
}

/* PARAGRAPH */

.content-section p{
    font-size:17px;
    line-height:1.9;
    color:#475569;
    margin-bottom:22px;
}

/* SUB HEADINGS */

.content-section h3{
    font-size:30px;
    font-weight:700;
    color:#111827;
    margin-top:50px;
    margin-bottom:22px;
    padding-left:18px;
    border-left:6px solid #ff5a00;
    line-height:1.4;
}

/* TABLE WRAPPER */

.table-responsive{
    margin-top:35px;
    border-radius:24px;
    overflow:hidden;
    background:#fff;
    box-shadow:0 18px 40px rgba(0,0,0,0.08);
}

/* TABLE */

.table{
    width:100%;
    margin:0;
    border-collapse:collapse;
    background:#fff;
}

/* TABLE HEADER */

.table thead{
    background:linear-gradient(135deg,#ff6b00,#ff2e63);
}

.table thead th{
    color:#e60e0e;
    font-size:16px;
    font-weight:700;
    padding:20px;
    border:none;
    text-transform:uppercase;
    letter-spacing:0.5px;
}

/* TABLE BODY */

.table tbody td{
    padding:20px;
    border:1px solid #e2e8f0;
    font-size:15px;
    line-height:1.7;
    color:#334155;
    vertical-align:top;
}

.table tbody tr:nth-child(even) td{
    background:#f8fafc;
}

.table tbody tr:hover td{
    background:#fff7ed;
    transition:0.3s ease;
}

/* HIGHLIGHT STRONG TEXT */

.table strong,
.service-list strong,
.important-notice strong{
    color:#e60e0e;
    font-weight:700;
}

/* SERVICE LIST */

.service-list{
    margin-top:25px;
    padding:0;
    list-style:none;

    display:flex;
    flex-direction:column;
    gap:18px;
}

.service-list li{
    position:relative;
    background:#fff;
    padding:18px 22px 18px 60px;
    border-radius:18px;
    line-height:1.8;
    color:#475569;
    box-shadow:0 8px 25px rgba(0,0,0,0.06);
    border-left:5px solid #ff5a00;
}

/* ICON */

.service-list li::before{
    content:'✓';
    position:absolute;
    left:20px;
    top:18px;

    width:28px;
    height:28px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;
    background:linear-gradient(135deg,#ff6b00,#ff2e63);

    color:#fff;
    font-size:14px;
    font-weight:700;
}

/* IMPORTANT NOTICE BOX */

.important-notice{
    margin-top:45px;
    padding:35px;
    border-radius:24px;

    background:linear-gradient(135deg,#fff7ed,#fff1f2);

    border:2px solid rgba(255,90,0,0.15);

    box-shadow:0 15px 40px rgba(255,98,0,0.08);
}

.important-notice h3{
    margin-top:0;
    color:#e11d48;
    border-left-color:#e11d48;
}

.important-notice p{
    margin-bottom:15px;
    color:#475569;
}

/* LINKS */

.content-section a{
    color:#ff5a00;
    font-weight:600;
    text-decoration:none;
    transition:0.3s ease;
}

.content-section a:hover{
    color:#e11d48;
}

/* RESPONSIVE */

@media(max-width:992px){

    #services-fees-title{
        font-size:42px;
    }

    .content-section h3{
        font-size:26px;
    }
}

@media(max-width:768px){

    #services-fees-title{
        font-size:34px;
    }

    .content-section h3{
        font-size:23px;
    }

    .content-section p{
        font-size:15px;
    }

    .table thead th,
    .table tbody td{
        padding:15px;
        font-size:14px;
    }

    .service-list li{
        padding:16px 18px 16px 55px;
        font-size:15px;
    }

    .important-notice{
        padding:25px;
    }
}

@media(max-width:480px){

    #services-fees-title{
        font-size:28px;
    }

    .content-section h3{
        font-size:21px;
    }

    .service-list li{
        line-height:1.7;
    }
}