body.lock {
    position: fixed;
}

.modal-help {
    display: none; /* Скрыть модальное окно по умолчанию */
    position: fixed; /* Фиксированное позиционирование */
    left: 0;
    top: 0;
    width: 100%; /* Ширина на весь экран */
    height: 100%; /* Высота на весь экран */
    background-color: rgba(0, 0, 0, 0.5); /* Полупрозрачный черный фон */
    z-index: 1000; /* Поверх других элементов */
}

.modal__content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 50px 20px 20px;
    width: 80%; /* Или нужная вам ширина */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.modal-help .help-section {
    padding: 0;
}

.modal-help .close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 2;
    cursor: pointer;
}

.modal-help .section__title {
    margin-bottom: 2rem;
    font-size: 3rem;
}

.modal-help .help-left-col {
    max-width: fit-content;
    width: 100%;
    margin-right: 50px;
}

.modal-help .help-right-col {
    max-width: 40%;
    width: 100%;
}

.modal-help .help__img {
    height: 500px;
}

.modal-help .help__photo {
    width: 110%;
    height: 55%;
}

@media screen and (max-width: 1300px) {
    .modal-help .help__photo {
        width: 100%;
        height: 35%;
    }
}

@media screen and (max-width: 1024px) {
    .modal-help .help__img {
        height: 350px;
    }
}

@media screen and (max-width: 768px) {
    .modal-help .help-left-col {
        margin-right: auto;
    }
}