.section-contact-help {
    background-color: #15324D;
    padding: 50px 0;
    position: relative;
}

.section-contact-help .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.contact-help {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.contact-help-content {
    max-width: 50%;
    position: relative;
    z-index: 1;
}

.contact-help-content h2 {
    margin-bottom: 20px;
    text-transform: uppercase;
    font-size: 24px;
    color: #fff;
}

.contact-help-content p {
    font-size: 16px;
    color: #fff;
    margin-bottom: 30px;
}

.contact-help-button {
    display: inline-block;
    background-color: #fff;
    color: #1F8467;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
}

.contact-help-button:hover {
    background-color: #3b6f61;
}

.contact-help-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    right: 0;
    left: auto;
    bottom: 0;
    z-index: 0;
}

.contact-help-image img {
    display: flex;
    max-width: 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-help-image-mobile {
    display: none;
}

@media (max-width: 768px) {
    .section-contact-help {
        min-height: 571px;
        padding: 37px 0;
    }
    .contact-help-access {
        flex-direction: column;
        text-align: center;
    }

    .contact-help-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        max-width: 100%;
        margin-bottom: 20px;
    }

    .contact-help-content h2 {
        max-width: 100%;
        margin-bottom: 16px;
        font-size: 18px;
    }

    .contact-help-content-text {
        margin-bottom: 40px;
        font-size: 14px;
        line-height: 22px;
    }

    .contact-help-content p {
        font-size: 14px;
        color: #fff;
        margin-bottom: 30px;
        text-align: center;
    }

    .contact-help-image {
        display: none;
        justify-content: center;
        align-items: flex-end;
        position: absolute;
        top: auto;
        right: 0;
        left: 0;
        bottom: 0;
        z-index: 0;
    }

    .contact-help-image-mobile {
        display: flex;
    }

    .contact-help-image img {
        height: 386px;
    }
}