.contacts-form {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 725px;
    width: 100%;
}

.contacts-desc {
    max-width: 877px;
    margin-bottom: 45px;
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 400;
    font-size: 32px;

}

.contacts-title {
    margin-bottom: 40px !important;
}

.contacts-wrapper-new {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.contacts-info-section {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.contacts-info-text {
    font-size: 22px;
}

.contacts-info-icon {
    width: 50px;
    height: 50px;
    /* background-color: #00A769; */
    background-position: center;
    background-size: cover;
    /* border-radius: 100%; */
}

.contacts-info-wrapper {
    display: flex;
    gap: 16px;
    align-items: center;
    cursor: pointer;
}

.contacts-form-container {
    width: 100%;
    margin-bottom: 45px;
}

.contacts-form-group {
    margin-bottom: 30px;
}

.contacts-form-group input {
    width: 100%;
    border: none;
    border-bottom: 1px solid #ccc;
    padding-bottom: 23px;
    font-size: 22px;
    background: transparent;
    outline: none;
    transition: border-color 0.3s ease;
}

.contacts-form-group input::placeholder {
    color: #9a9a9a;
}

.contacts-form-group input:focus {
    border-bottom: 1px solid #19a463;
}

.contacts-checkbox-group {
    display: flex;
    position: relative;
    align-items: center;
    margin-bottom: 30px;
    font-size: 14px;
    color: #666;
}

.contacts-checkbox-group input {
    margin-right: 10px;
    width: 27px;
    height: 27px;
    top: 0;
    left: 7px;
    accent-color: #19a463;
    cursor: pointer;
    opacity: 0;
    position: absolute;
}

.contacts-checkbox-group label {
    cursor: pointer;
    line-height: 1.4;
    position: relative;
    font-size: 16px;
    display: flex;
    gap: 8px;
    align-items: center;
}

input:checked ~ label::before {
    /* border-color: red; */
    background-image: url("/local/templates/ozera/assets/images/new-main-page/checbox-active.svg");
    background-size: 17px 17px;
    background-position: center;
    background-repeat: no-repeat;
}

.contacts-checkbox-group label::before {
    content: "";
    width: 27px;
    height: 27px;
    border: 2px solid #DADADA;
    flex: 0 0 auto;
}

.contacts-submit-btn {
    cursor: pointer;
    /* background: #19a463;
    color: #fff;
    border: none;
    padding: 14px 28px;
    border-radius: 30px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.1s ease; */
}

.contacts-submit-btn:hover {
    /* background: #158a52; */
}

.contacts-submit-btn:active {
    /* transform: scale(0.98); */
}

@media (max-width: 1200px) {
    .contacts-wrapper-new {
        flex-direction: column;
    }

    .contacts-form {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .contacts-title {
        margin-bottom: 10px !important;
    }

    .contacts-desc {
        margin-bottom: 0px;
        font-size: 18px;
        line-height: 25px;
    }
    .contacts-checkbox-group span {
        font-size: 12px;
    }

    .contacts-form-group input {
        padding-bottom: 12px;
        font-size: 12px;
    }

    .contacts-form-group {
        margin-bottom: 20px;
    }

    .contacts-checkbox-group {
        margin-bottom: 20px;
    }

    .contacts-info-section {
        display: none;
    }

    .contacts-submit-btn {
        width: 100%;
        text-align: center;
    }

    /* .contacts-checkbox-group label::before {

    } */
}