﻿/* Fee Details Section Styling */
.fee-details-section {
    background: linear-gradient(to bottom, #ffffff, #f8f9fa);
    padding: 60px 0;
    color: #ffffff;
}

.fee-title {
    font-size: 2.5rem;
    font-weight: bold;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 40px;
}

.fee-category-left,
.fee-category-right {
    background-color: #ffffff;
    color: #212529;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .fee-category-left:hover,
    .fee-category-right:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    }

.fee-category-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #89751c;
    margin-bottom: 20px;
}

    .fee-category-title::after {
        content: '';
        display: block;
        width: 50px;
        height: 4px;
        background-color: #6c5c12;
        margin-top: 8px;
    }

.fee-item-list,
.sub-fee-item-list {
    list-style: none;
    padding: 0;
}

.fee-item {
    font-size: 1rem;
    padding: 15px 0;
    border-bottom: 1px solid #dee2e6;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .fee-item:last-child {
        border-bottom: none;
    }

    .fee-item span {
        font-weight: bold;
        color: #212529;
    }

.sub-fee-item {
    font-size: 0.95rem;
    color: #495057;
    padding: 5px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.fee-notes {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.note-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #dc3545;
    margin-bottom: 10px;
}

.note-text {
    font-size: 0.95rem;
    color: #212529;
}
