.fee-structure .content-container {
    border-radius: 20px;
    background-image: url('/img/fees-bg.jpeg');
    background-size: cover;
    background-position: center;
    height: 500px;
    align-content: center;
}

.fee-structure .inner-container {
    align-content: center;
    padding: 6%;
}

.fee-structure .sub-heading {
    margin-bottom: 1%;
    font-size: 35px;

    color: white;
}


.fee-structure .text {
    color: white;
    font-size: 20px;

}


.container2 {
    /* max-width: 900px; */
    margin: 0px auto;
    background: #fff;
    /* box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.297); */
    border-radius: 12px;
    overflow: hidden;
    padding: 20px;
}

.fees-charges h2 {
    text-align: center;
    margin-bottom: 20px;
    /* font-size: 1.8rem; */
    color: #006039;
    font-weight: 600;
}

.fees-charges .line {
    width: 10%;
    text-align: center;
    display: block;
    margin: 0px auto;
}

.fees-table {
    border-collapse: collapse;
    width: 100%;
    margin-top: 3%;
}

.row {
    display: flex;
    justify-content: space-between;
    padding: 15px 20px;
    border-bottom: 1px solid #e6e6e6;
    transition: background 0.3s ease;
}

.row:last-child {
    border-bottom: none;
}

.left {
    font-weight: 500;
    color: #000000;
    flex: 3;
}

.right {
    font-weight: 600;
    color: #2d3748;
    flex: 1;
    text-align: right;
}

.row:hover {
    background-color: #f9f9f9;
}

.highlight {
    background-color: #f0f8ff;
    font-weight: bold;
}

.highlight .right {
    color: #2b6cb0;
}

.row:nth-child(odd) {
    background-color: #fcfcfc;
}

@media (max-width: 768px) {
    .row {
        /* flex-direction: column; */
        text-align: left;
        padding: 10px 15px;
    }

    .right {
        margin-top: 5px;
        text-align: left;
        font-size: 0.95rem;
    }
}
