.burger-menu {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    display: none; /* Initially hide the burger menu */
  }
  
  .burger-menu .line {
    width: 25px;
    height: 3px;
    background-color: black;
    margin: 2px 0;
  }

  @media screen and (max-width: 768px) {
    .header__text {
      display: none; /* Скрываем обычное меню */
      position: absolute;
      top: 60px;
      left: 0;
      width: 100%;
      background-color: #333;
      flex-direction: column;
      align-items: center;
    }

    .burger-menu {
        display: flex;
      }

      .footer__title{
        display: block;
        align-items: center;
      }

      .end__img{
        padding: 0;
        width: 70%;
        margin: 0 auto;

      }
}
  
  .overlay {
    display: none; /* Initially hide the overlay */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 10;
    justify-content: center;
    align-items: center;
  }
  
  .overlay nav {
    display: flex;
  }
  
  .menu {
    list-style-type: none;
    padding: 0;
    margin: 0;
    text-align: center;
  }
  
  .menu li {
    margin: 20px 0;
  }
  
  .menu li a {
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s;
  }
  
  .menu li a:hover {
    background-color: #555;
  }
  
  .active {
    display: flex;
  }
  
  /* Стили для секций */
