.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    font-weight: 600;
    color: #111;
    text-align: center;
    margin: 60px 0 40px;
    position: relative;
}

.section-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #d4af37, #c59d28);
    margin: 16px auto 0;
    border-radius: 2px;
}

.courses {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: space-between;
    padding: 0 20px;
}

.course-box {
    background: #fff;
    border-radius: 20px;
    padding: 32px 24px;
    width: 48%;
    min-width: 320px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.04);
    border: 1px solid #e2e2e2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
    cursor: pointer;

}

.course-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.06);
    border-color: #c59d28;
}

.course-box h2 {
    font-size: 26px;
    font-weight: 600;
    color: #1e1e1e;
    margin-bottom: 16px;
}

.course-box p,
.course-box ul {
    font-size: 17px;
    color: #444;
    line-height: 1.7;
}

.course-box ul {
    list-style: none;
    padding-left: 20px;
    margin: 10px 0 20px;
}

.course-box ul li {
    position: relative;
    margin-bottom: 8px;
    padding-left: 20px;
}

.course-box ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: #c59d28;
    font-size: 0.9em;
}


.highlight-price {
    align-self: flex-start;
    background: linear-gradient(90deg, #1f1f1f, #2a2a2a);
    color: #fff;
    font-weight: 700;
    padding: 10px 24px;
    border-radius: 14px;
    font-size: 1.1em;
    letter-spacing: 0.4px;
    margin-top: auto;
    border: 2px solid #d4af37;
    transition: all 0.25s ease;
    text-decoration: none;
    width: 100%;
    text-align: center;
}

.submit-btn {
    align-self: flex-start;
    color: #fff;
    background: linear-gradient(90deg, #1f1f1f, #2a2a2a);
    font-weight: 700;
    padding: 10px 24px;
    border-radius: 14px;
    font-size: 1.1em;
    letter-spacing: 0.4px;
    margin-top: auto;
    border: 2px solid #d4af37;
    transition: all 0.25s ease;
    text-decoration: none;
    width: 100%;
    text-align: center;
    margin-top: 5px !important;
}

.highlight-price:hover {
    background: linear-gradient(90deg, #2a2a2a, #1f1f1f);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    color: white;
}

/* Enhanced Section Title */
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    font-weight: 600;
    color: #111;
    text-align: center;
    position: relative;
    margin-bottom: 60px;
    margin-top: 60px;
}

.section-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #d4af37, #c59d28);
    margin: 16px auto 0;
    border-radius: 2px;
}

/* Teachers Section */
.teachers {
    margin-top: 80px;
    margin-bottom: 80px;
    padding: 40px 0;
}

.teachers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    padding: 0 24px;
}

.teacher-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px 24px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.25s ease;
}

.teacher-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.07);
}

.teacher-photo {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    margin-bottom: 20px;
    border: 3px solid #d4af37;
}

.teacher-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.teacher-desc {
    font-size: 1rem;
    color: #444;
    line-height: 1.7;
    max-width: 90%;
}

.teacher-desc .quote {
    display: block;
    font-style: italic;
    margin-top: 14px;
    color: #333;
    padding: 10px 18px;
    border-left: 4px solid #d4af37;
    background: #fefefe;
    border-radius: 10px;
    font-size: 0.97rem;
}

.teacher-desc .quote-author {
    display: block;
    margin-top: 6px;
    font-size: 0.9rem;
    color: #666;
    text-align: right;
}



@media (max-width:680px) {

    .courses {
        flex-direction: column;
        gap: 16px;
    }

    .course-box {
        width: 100%;
        min-width: unset;
        height: auto;
    }
}

@media (max-width: 992px) {
    .section-title {
        font-size: 30px;
    }

    .course-box h2 {
        font-size: 22px;
    }

    .course-box p,
    .course-box ul {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 26px;
    }

    .course-box {
        padding: 20px;
    }

    .course-box h2 {
        font-size: 20px;
    }

    .course-box p,
    .course-box ul {
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .course-box {
        padding: 15px;
    }

    .course-box h2 {
        font-size: 18px;
    }

    .course-box p,
    .course-box ul {
        font-size: 14px;
    }
}



@media (max-width: 600px) {
    .teachers-grid {
        gap: 18px;
    }

    .teacher-card {
        flex: 0 0 98vw;
        max-width: 99vw;
        min-width: 180px;
        padding: 10px 4vw 10px 4vw;
        gap: 10px;
    }

    .teachers-swiper .teacher-card {
        width: 98vw;
        height: 220px;
        padding: 10px 4vw 10px 4vw;
        gap: 8px;
    }

    .teachers-swiper .teacher-photo {
        width: 56px;
        height: 56px;
    }
}