main {
    flex: 1;
}
.hero-course {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
    min-height: 88vh;
    color: #fff;
    background:
        linear-gradient(180deg, rgba(193, 112, 3, 0.25), rgba(99, 58, 2, 0.25)),
        url("../images/aboutme.jpeg") 50% 70%/cover no-repeat;
    background-position: center 85%;
    background-blend-mode: overlay;
}

.h1container {
    position: relative;
    left: 20%;
    top: 50%;
    padding: 1rem 1.25rem;
    max-width: 520px;
    width: 40vw;
}

.hero h1 {
    font-family: var(--font-serif);
    font-size: 3rem;
    margin: 0 0 0.5rem 0;
    display: block;
    max-width: 1200px;
}

.hero h1::after {
    content: "";
    display: block;
    height: 0;
}

.btn {
    text-decoration: none;
    background: var(--accent);
    color: #fff;
    border: none;
    padding: 0.6rem 1rem;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 700;
    margin-top: 1rem;
}

/* Courses Styles */
.course {
    padding: 2rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.course h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 2rem;
}

.course-row {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 3rem;
}

.course-row.reverse {
    flex-direction: row-reverse;
}

.course-row img {
    width: 50%;
}

.course-text {
    width: 50%;
}

.course-text h3 {
    margin-bottom: 0.5rem;
}

.course-text p {
    margin-bottom: 20px;
}

/* Booking Section */
.booking-section {
    max-width: 1000px;
    margin: 0 auto 2rem;
    padding: 2rem;
    background: linear-gradient(180deg, rgba(199, 146, 64, 0.3), rgba(193, 112, 3, 0.3));
    border-radius: calc(var(--radius));
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.booking-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 2rem;
}

@media(max-width:900px){
    .course-row, .course-row.reverse {
        flex-direction: column;
    }
    .course-row img, .course-text {
        width: 100%;
    }
}