/* ===== FORCE FULL WIDTH ===== */
.full-width-section {
    width: 100vw;
    max-width: 100%;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding: 40px 20px;
    background: #f8fafc;
}

/* ===== TITLE ===== */
.section-title {
    text-align: center;
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 700;
    color: #0516d7;
    margin-bottom: 10px;
}

.section-subtitle {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 30px;
    font-size: 16px;
    color: #555;
}

/* ===== TABLE WRAPPER ===== */
.table-responsive {
    width: 100%;
    overflow-x: auto;
}

/* ===== TABLE STYLE ===== */
.course-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* HEADER */
.course-table thead {
    background: linear-gradient(90deg, #0dfd8dc3, #0bd7a7);
}

.course-table th {
    color: #fff;
    padding: 16px;
    text-align: left;
    font-weight: 600;
    font-size: 15px;
}

/* BODY */
.course-table td {
    padding: 15px;
    border-bottom: 1px solid #eee;
    font-size: 15px;
}

.course-table tbody tr:hover {
    background: #f1f5ff;
}

.price {
    color: #2906f1;
    font-weight: 700;
    white-space: nowrap;
}

/* ===== MOBILE MODE ===== */
@media (max-width: 768px) {
    .course-table thead {
        display: none;
    }

    .course-table, 
    .course-table tbody, 
    .course-table tr, 
    .course-table td {
        display: block;
        width: 100%;
    }

    .course-table tr {
        margin-bottom: 15px;
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        padding: 10px;
    }

    .course-table td {
        padding: 10px;
        border: none;
        display: flex;
        justify-content: space-between;
    }

    .course-table td::before {
        content: attr(data-label);
        font-weight: 600;
        color: #2307f5c2;
    }
}
