/*вкладка о нас*/
.mapp{
    margin-top: 40px;
    margin-bottom: 40px;
}



.about_why {
    width: 100%;
    font-family: mainFont;
    padding-top: 20px;
    color: #2c3e50;
    text-align: left;

}
.about__custom1{
    width: 100%;
    font-family: mainFont;
    padding-top: 30px;
    color: #2c3e50;
    text-align: left;
    border-bottom: 2px solid #8cbbd1;
    padding-bottom: 25px;
}
.about__custom2{
    width: 100%;
    font-family: mainFont;
    padding-top: 30px;
    padding-bottom: 40px;
    border-bottom: 2px solid #8cbbd1;
    color: #8cbbd1;
    text-align: left;

}




/*ПОЧЕМУ МЫ*/

/* Блок "ПОЧЕМУ МЫ" */
.why-list {
    padding-top: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #8cbbd1;
    width: 100%;
}

.why-item {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    font-family: mainFont;
    color: #2c3e50;
    text-align: left;
    align-items: center;

}

.why-marker {
    font-size: 22px;
    /*font-weight: bold;*/
    color: #8cbbd1;
    flex-shrink: 0;
}

.why-item p {
    margin: 0;
}

/*блок с адресом*/

/* Блок контактов (две колонки) */
.contact-block {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin: 30px 0px;
    align-items: flex-start;
    border-bottom: 2px solid #8cbbd1;
}

/* Левая колонка */
.contact-info {

    min-width: 260px;
    padding-right: 20px;
    box-sizing: border-box;

}

.contact-info h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 10px 0;
    color: #8cbbd1;
}

.contact-info p {
    margin: 0 0 20px 0;
    line-height: 1.5;
    color: #2c3e50;
    font-size: 14px;
}

/* Ссылка */
.map-link {
    display: inline-block;
    margin-top: 10px;
    color: #8cbbd1;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.map-link:hover {
    color: #2c3e50;
    text-decoration: underline;
}

/* Правая колонка — карта */
.map-container {
    flex: 1;
    min-width: 350px;
    margin-bottom: 30px;
}

.map-container iframe {
    width: 100%;
    height: 350px;
    border: none;
}

/* Адаптация для телефонов */
@media (max-width: 768px) {
    .contact-block {
        flex-direction: column;
    }

}


/*форма*/

/* Форма вопросов */
.questions-form {
    display: flex;
    background-color: #ffffff;
    /* padding: 50px; */
    border-radius: 16px;
    width: 500px;
    flex-direction: column;
    margin: 0px auto 50px auto;
}

.questions-form h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
    padding-left: 15px;
    font-family: mainFont;
    color: #2c3e50;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
    flex: 1;
}


.form-row {
    display: flex;
    gap: 30px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}


.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #2c3e50;
    font-size: 14px;
}

.form-group input, .form-group textarea {
    width: 100%;
    max-width: 600px;
    padding: 12px;
    border: 2px solid #8cbbd1;
    border-radius: 8px;
    font-family: mainFont, sans-serif;
    font-size: 14px;
    box-sizing: border-box;
}


.form-group textarea {
    resize: vertical;
}

.btn-submit-form {
    background-color: #2c3e50;
    color: white;
    border: none;
    padding: 14px 30px;
    font-size: 14px;
    font-weight: normal;
    cursor: pointer;
    transition: background 0.3s;
    display: block;
    margin: 0 auto
}

.btn-submit-form:hover {
    background-color: #1a2a3a;
}

@media (max-width: 768px) {
    .contact-block {
        flex-direction: column;
    }
    .why-grid {
        flex-direction: column;
    }
    .form-group input,
    .form-group textarea {
        max-width: 100%;
    }
}


/*уведомление*/
/* 
.toast-notification {
    position: fixed;
    bottom: 60px;
    right: 20px;
    padding: 12px 24px;
    color: white;
    font-family: mainFont, sans-serif;
    font-size: 14px;
    z-index: 10000;
    opacity: 0;
    transform: translateX(100%);
    transition: opacity 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.toast-notification.show {
    opacity: 1;
    transform: translateX(0);
}

.toast-notification.error {
    background-color: #14202c;
}

.toast-notification.success {
    background-color: #14202c;
} */