.how-it-works {
    padding: 40px;
    max-width: 800px;
    margin: 10px auto;
    text-align: center;
}

.how-it-works .intro-text {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.how-it-works .steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 40px;
    margin-bottom: 40px;
    justify-items: center;
    align-items: start;
}

.how-it-works .step {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.how-it-works .step-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    background-color: #b0c4de;
    color: #1a3c5e;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.how-it-works .step img {
    width: 150px;
    height: 150px;
    object-fit: contain;
    margin-bottom: 15px;
}

.how-it-works .step p {
    font-size: 18px;
    font-weight: 400;
    color: #333;
}

.how-it-works .schedule-text {
    font-size: 18px;
    margin-bottom: 20px;
}

.how-it-works .contact-text {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 30px;
}

/* New styling for the button group */
.how-it-works .button-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.how-it-works .button-group .schedule-btn {
    margin: 0;
    /* Override the default margin: 0 auto */
    display: inline-block;
    /* Override the default display: block */
}

@media (max-width: 768px) {
    .how-it-works {
        padding: 20px;
        margin: 30px auto;
    }

    .how-it-works .intro-text {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .how-it-works .steps {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, auto);
        gap: 30px;
    }

    .how-it-works .step-number {
        width: 30px;
        height: 30px;
        line-height: 30px;
        font-size: 16px;
        margin-bottom: 10px;
    }

    .how-it-works .step img {
        width: 120px;
        height: 120px;
        margin-bottom: 10px;
    }

    .how-it-works .step p {
        font-size: 16px;
    }

    .how-it-works .schedule-text {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .how-it-works .contact-text {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .how-it-works .button-group {
        flex-direction: column;
        gap: 10px;
    }

    .how-it-works .button-group .schedule-btn {
        display: block;
        /* Revert to block for stacking on mobile */
        margin: 0 auto;
        /* Center the buttons on mobile */
    }
}