*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}


header {
    width: 100%;
    height: 70px;
    display: flex;
    position: fixed;
    background-color: #fff;
}

nav {
    width: 50%;
    height: 70px;
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.logo {
    width: 50%;
    height: 70px;
}

.logo img {
    height: 80%;
    object-fit: contain;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

a {
    text-decoration: none;
    color: #383838;
}

a:hover {
    color: #3e8622;
}

    a {
      text-decoration: none;
      color: #383838;
      
    }
    a:hover{
        color: #3e8622;
    }
    
.q1:hover
{ color:#fff;}
   
.block1{
    width: 100%;
    height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
 .txt{   /*стиль заголовков */
    font-size: 50px;
    font-family: 'Arial', 'Verdana', sans-serif;
}
.txt2{ /*стиль подзаголовков текста */
    font-size: 30px;
    font-family: 'Arial', 'Verdana', sans-serif;
    color: #2d2d2d;
}

.txt3{/*стиль основного текста */
    font-size: 20px;
    font-family: 'Arial', 'Verdana', sans-serif;
    color: #383838;
    display: flex;
    justify-content: center;
}

.q1{
    color: #ffffff;
    font-size: 20px;
}
.cnop1{ /*стиль кнопки 1 */
    width: 400px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color:#3e8622;
    border-radius: 5px;
}
    footer{
        width: 100%;
        height: 70px;
        display: flex;
        justify-content: space-around;
        align-items: center;
        background-color: #3e8622b6;
    }
    
.map-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 40vh; /* Фиксированная высота */
  border-radius: 10px; /* Скругленные углы */
}
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}
    /* Адаптация для мобильных */
@media (max-width: 768px) {
     .menu-toggle {
        display: block;
        position: absolute;
        right: 20px;
        top: 20px;
        background: none;
        border: none;
        font-size: 24px;
        cursor: pointer;
    }
    nav {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        height: auto;
        padding: 20px 0;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        display: none;
    }
    
    nav.mobile-visible {
        display: flex;
    }
    
    nav a {
        padding: 15px;
        width: 100%;
        text-align: center;
    }
    
     .block1 {
        height: auto;
        padding: 100px 20px 40px;
    }
    
    .txt {
        font-size: 30px;
    }
    
    .txt2 {
        font-size: 20px;
    }
    
    .cnop1 {
        width: 100%;
        max-width: 300px;
    }
    
    footer {
        flex-direction: column;
        gap: 15px;
        height: auto;
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .txt {
        font-size: 24px;
    }
    
    .txt2 {
        font-size: 18px;
    }
}