.page-head {
    padding: 80px 0 50px;
    text-align: center;
    background: #f9fafb;
}
.page-head_label {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 4px;
    color: #2c9e52;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.page-head_title {
    font-family: 'Montserrat', sans-serif;
    font-size: 46px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 14px;
}

.page-head_subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: #666666;
    max-width: 550px;
    margin: 0 auto;
    line-height: 1.6;
}
.main_contacts{
    padding: 70px 0;
    background: #ffffff;
}
.contacts_grid{
    display: flex;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 16px;
}
.contacts_info{

    display: flex;
    flex-direction: column;
    gap: 0px;
    padding: 24px;

}
.contacts_block{
    padding: 16px 0;
    border-bottom: 1px solid #edf0f4;
}
.contacts_block:last-child{
    border: none;
    padding-bottom: 0;
}
.contacts_label{
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #999999;
    text-transform: uppercase;
}
.value{
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #1a1a1a;
    text-decoration: none;
    line-height: 1.5;
    transition: color 0.3s;
}
.main_contacts a{
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #1a1a1a;
    text-decoration: none;
    line-height: 1.5;
    transition: color 0.3s;
}
a.value:hover{
    color: #2c9e52;
    text-decoration: none;
}
.bef_form{
    flex: 1;
    min-width: 0;
}
.bef_form_title{
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}
.bef_form_subtitle{
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #777777;
    margin-bottom: 32px;
}
.form{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.form_group{
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.form_label{
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #444444;
}
.required{
    color: #e74c3c;
}
.form_input{
    padding: 14px 18px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #1a1a1a;
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
    width: 100%;
    box-sizing: border-box;
}
.form_input::placeholder{
    color: #bbbbbb;
}
.form_input:focus{
    border-color: #2c9e52;
    box-shadow: 0 0 0 3px rgba(44, 158, 82, 0.08);
}
.form_input select,
.form_input textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #1a1a1a;
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
    box-sizing: border-box;
    background: #ffffff;
}
select.form_input{
    background: white;
    font-family: 'Inter', sans-serif;
}

.form_input textarea {
    resize: vertical;
    min-height: 80px;
}

.form_input select:focus,
.form_input textarea:focus {
    border-color: #2c9e52;
    box-shadow: 0 0 0 3px rgba(44, 158, 82, 0.08);
}
.form_btn{
    padding: 16px 0;
    background: linear-gradient(135deg, #7ec395, #2c9e52);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 4px;
}
.form_btn:hover{
    box-shadow: 0 8px 24px rgba(44, 158, 82, 0.3);
    transform: translateY(-2px);
}
.pers_data{
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #aaaaaa;
    text-align: center;
    margin-top: 4px;
}
@media(max-width: 768px){
    .contacts_grid{
        flex-direction: column;
        gap: 30px;
    }
    .contacts_info{
        flex: 0 0 auto;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 20px;
    }
    .contacts_block{
        flex: 1 1 90px;
    }
    .value{
        font-size: 15px;
    }
    .bef_form_title{
        font-size: 22px;
    }
    .bef_form_subtitle{
        font-size: 14px;
    }
    .form_input{
        padding: 12px 14px;
        font-size: 14px;
    }
    .form_btn{
        width: 100%;
    }
}
@media(max-width: 480px){
    .contacts_info{
        flex-direction: column;
        gap: 16px;
    }
    .contacts_label{
        font-size: 11px;
    }
    .value{
        font-size: 14px;
    }
}