  
   /* ===== Courses Section ===== */
.courses-section {
    padding: 90px 0;
    background: #fff7f3;
}

.section-header {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 50px;
}

.section-tag {
    font-size: 14px;
    font-weight: 600;
    color: #a37b42;
}

.section-header h2 {
    font-size: 38px;
    font-weight: 700;
    color: #2b1b12;
    margin: 10px 0;
}

.section-header p {
    font-size: 17px;
    color: #5c4330;
}

/* Course Card */
.course-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 32px;
    height: 100%;
    box-shadow: 0 20px 45px rgba(0,0,0,0.08);
    transition: 0.4s ease;
}

.course-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 65px rgba(0,0,0,0.12);
}

.course-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: #2b1b12;
    margin-bottom: 12px;
}

.course-card p {
    font-size: 16px;
    color: #5c4330;
    line-height: 1.6;
}

/* Footer */
.course-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 22px;
}

.course-footer span {
    font-size: 15px;
    color: #2b1b12;
}

 /* Seat Badge Focus */
.seat-badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 25px;
    background: rgba(242, 100, 60, 0.12);
    color: #f2643c;
    font-size: 15px;
    font-weight: 700;
}


/* Bottom Note */
.courses-note {
    text-align: center;
    margin-top: 50px;
}

.courses-note p {
    font-size: 15px;
    color: #5c4330;
}

.courses-note a {
    color: #f2643c;
    font-weight: 600;
}

/* Mobile */
@media (max-width: 768px) {
    .courses-section {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 28px;
    }
}
 
   