/* =========================
TAXES & FEES SECTION
========================= */

.content-section{
    padding:90px 0;
    background:#f8fafc;
}

/* MAIN HEADING */

#taxes-and-fees-title{
    font-size:52px;
    font-weight:800;
    color:#0f172a;
    margin-bottom:30px;
    position:relative;
    padding-bottom:18px;
    line-height:1.2;
}

#taxes-and-fees-title::after{
    content:'';
    position:absolute;
    left:0;
    bottom:0;
    width:120px;
    height:6px;
    border-radius:20px;
    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 DESIGN */

.table-responsive{
    margin-top:35px;
    border-radius:22px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
    background:#fff;
}

.table{
    margin:0;
    width:100%;
    border-collapse:collapse;
    background:#fff;
}

/* TABLE HEADER */

.table thead{
    background:linear-gradient(135deg,#ff6b00,#ff2e63);
}

.table thead th{
    color:#ee0a0a;
    font-size:17px;
    font-weight:700;
    padding:20px;
    border:none;
    text-transform:uppercase;
    letter-spacing:0.5px;
}

/* TABLE BODY */

.table tbody td{
    padding:20px;
    font-size:15px;
    color:#334155;
    border:1px solid #e2e8f0;
    vertical-align:top;
    line-height:1.7;
    background:#fff;
}

.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,
.tax-list strong{
    color:#ee0a0a;
    font-weight:700;
}

/* IMPORTANT POINTS */

.tax-list{
    margin-top:25px;
    padding:0;
    display:flex;
    flex-direction:column;
    gap:18px;
}

.tax-list li{
    position:relative;
    padding:18px 22px 18px 60px;
    background:#fff;
    border-radius:18px;
    color:#475569;
    line-height:1.8;
    box-shadow:0 8px 25px rgba(0,0,0,0.06);
    border-left:5px solid #ff5a00;
}

/* ICON */

.tax-list li::before{
    content:'✓';
    position:absolute;
    left:20px;
    top:18px;
    width:28px;
    height:28px;
    border-radius:50%;
    background:linear-gradient(135deg,#ff6b00,#ff2e63);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:15px;
    font-weight:700;
}

/* CONTACT LINKS */

.content-section a{
    color:#ff5a00;
    font-weight:600;
    text-decoration:none;
    transition:0.3s ease;
}

.content-section a:hover{
    color:#e11d48;
}

/* CONTACT BOX */

.contact-box{
    margin-top:40px;
    padding:35px;
    background:#fff;
    border-radius:24px;
    box-shadow:0 12px 35px rgba(0,0,0,0.08);
    border-top:5px solid #ff5a00;
}

/* RESPONSIVE */

@media(max-width:992px){

    #taxes-and-fees-title{
        font-size:42px;
    }

    .content-section h3{
        font-size:26px;
    }
}

@media(max-width:768px){

    .content-section{
        padding:70px 0;
    }

    #taxes-and-fees-title{
        font-size:34px;
    }

    .content-section h3{
        font-size:24px;
    }

    .table thead th,
    .table tbody td{
        padding:15px;
        font-size:14px;
    }

    .tax-list li{
        padding:16px 18px 16px 55px;
        font-size:15px;
    }
}

@media(max-width:480px){

    #taxes-and-fees-title{
        font-size:28px;
    }

    .content-section h3{
        font-size:21px;
    }

    .content-section p{
        font-size:15px;
    }
}