.how-to-book-section {
    background-color: rgba(217, 217, 217, 0.2);
    padding: 26px 0;
}

.how-to-book__wrapper {
    max-width: 726px;
    margin: 0 auto;
}

.how-to-book__header {
    text-align: center;
    padding-bottom: 36px;
}

.how-to-book__header .section-title {
    text-align: center;
    font-weight: 600;
    color: #373f47;
    font-size: 30px;
    line-height: 100%;
    letter-spacing: 0;
}

.how-to-book__steps {
    position: relative;
    padding-left: 65px;
}

.booking-step {
    display: flex;
    align-items: flex-start;
    padding-top: 10px;
    padding-bottom: 21px;
    position: relative;
}

/* Vertical yellow connecting line between steps (desktop) */
.booking-step:not(:last-child)::before {
    content: "";
    position: absolute;
    left: -47px;
    top: 60px;
    bottom: 10px;
    width: 1px;
    background-color: #fed513;
}

.step-number {
    background-color: #fed513;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 30px;
    position: absolute;
    left: -70px;
    top: 0;
    z-index: 1;
}

.step-number span {
    font-family: "Manrope", sans-serif;
    font-weight: 600;
    font-size: 20px;
    color: #000000;
}

.step-content {
    flex: 1;
}

.step-title {
    margin: 0;
    padding-bottom: 21px;
    font-weight: 700;
    font-size: 16px;
    line-height: 22px;
    color: #373f47;
}

.subsection-title {
    margin: 0;
    padding-bottom: 10px;
    font-weight: 600;
    font-size: 14px;
    line-height: 22px;
    color: #373f47;
}

.subsection-text {
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    color: #373f47;
}


/* Mobile styles */
@media (max-width: 768px) {
    .how-to-book-section {
        padding: 17px 0 0 0;
    }

    .how-to-book__wrapper {
        padding: 0;
        max-width: 100%;
    }

    .how-to-book__header {
        padding-bottom: 10px;
    }

    .how-to-book__header .section-title {
        font-size: 22px;
        font-weight: 600;
        text-align: center;
        margin: 0;
        line-height: 1.3;
    }

    .how-to-book__steps {
        position: relative;
        padding-left: 40px;
    }

    .booking-step {
        padding-top: 0;
        padding-bottom: 0;
        margin-bottom: 16px;
        position: relative;
    }

    .booking-step:last-child {
        margin-bottom: 0;
    }

    /* Vertical yellow connecting line between steps */
    .booking-step:not(:last-child)::before {
        content: "";
        position: absolute;
        left: -25px;
        top: 45px;
        bottom: -1px;
        width: 1px;
        background-color: #fed513;
        border-radius: 2px;
    }

    .step-number {
        position: absolute;
        left: -40px;
        top: 0;
        width: 32px;
        height: 32px;
        margin-right: 0;
        border-radius: 50%;
        z-index: 1;
        background-color: #fed513;
    }

    .step-number span {
        font-size: 16px;
        font-weight: 600;
        line-height: 32px;
    }

    .step-content {
        padding-left: 0;
    }

    .step-title {
        font-size: 16px;
        font-weight: 600;
        line-height: 20px;
        padding-top: 6px;
        padding-bottom: 6px;
        margin: 0;
        color: #373f47;
    }

    .subsection-title {
        font-size: 14px;
        font-weight: 600;
        line-height: 22px;
        padding-bottom: 4px;
        margin: 0;
        color: #373f47;
    }

    .subsection-text {
        font-size: 14px;
        font-weight: 400;
        line-height: 1.5;
        margin: 0 0 8px 0;
        color: #373f47;
    }

    .subsection-text:last-child {
        margin-bottom: 0;
    }

    .step-subsection {
        padding-bottom: 6px;
    }

    .step-subsection:last-child {
        padding-bottom: 0;
    }
}
