/* Tuition Section Styles */
.tuition-section {
    background-color: #fff;
    padding-bottom: 120px;
}

.tuition-table-wrapper {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    margin-bottom: 50px;
}

.tuition-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
}

.tuition-table thead th {
    background: var(--Light-Primary-50);
    color: #fff;
    padding: 22px 20px;
    text-align: left;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.tuition-table thead th:first-child {
    border-radius: 20px 0 0 0;
}

.tuition-table thead th:last-child {
    border-radius: 0 20px 0 0;
}

.tuition-table tbody td {
    padding: 20px;
    color: #555;
    border-bottom: 1px solid #f2f2f2;
    vertical-align: middle;
}

.tuition-table tbody tr:last-child td {
    border-bottom: none;
}

.tuition-table tbody tr:nth-child(even) {
    background-color: var(--Light-Senary-95);
}

.tuition-table tbody tr:hover {
    background-color: #fffcf0;
}

.col-stt {
    width: 60px;
    text-align: center;
}

.col-course {
    font-weight: 800;
    color: var(--Light-Primary-50);
    width: 25%;
}

.col-level {
    color: #888;
    font-weight: 500;
    font-size: 13px;
}

.col-schedule {
    color: #666;
    font-weight: 600;
}

.col-fee {
    font-weight: 800;
    color: var(--Light-Senary-50) !important;
    font-size: 18px;
}

.text-right {
    text-align: right !important;
}

/* Tuition Footer */
.tuition-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.tuition-note {
    background: #fdf6ec;
    border-radius: 20px;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 600px;
}

.note-icon {
    width: 50px;
    height: 50px;
    background: var(--Light-Senary-50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    flex-shrink: 0;
}

.note-content h4 {
    font-size: 16px;
    font-weight: 800;
    color: var(--Light-Primary-50);
    margin: 0 0 5px;
}

.note-content p {
    font-size: 14px;
    font-style: italic;
    color: #666;
    margin: 0;
    font-weight: 500;
}

.tuition-actions {
    display: flex;
    gap: 15px;
}

/* Button overrides if needed or new classes */
.c-button--brown {
    background-color: var(--Light-Primary-50) !important;
}

.c-button-outline {
    background: transparent;
    border: 2px solid var(--Light-Primary-50);
    color: var(--Light-Primary-50);
    padding: 12px 30px;
    border-radius: 100px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.c-button-outline:hover {
    background: var(--Light-Primary-50);
    color: #fff;
}

/* Responsive */
@media (max-width: 1199px) {
    .tuition-table-wrapper {
        overflow-x: auto;
    }

    .tuition-table {
        min-width: 900px;
    }
}

@media (max-width: 991px) {
    .tuition-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .tuition-actions {
        width: 100%;
        justify-content: flex-end;
    }
}

@media (max-width: 767px) {
    .tuition-actions {
        flex-direction: column;
        width: 100%;
    }

    .tuition-actions .c-button-primary,
    .tuition-actions .c-button-outline {
        width: 100%;
        justify-content: center;
    }
}