.banner {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 70px;
      background-color: #28373e;
      color: white;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0 20px;
      z-index: 1000;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    }

    .logo_img {
      width: 4%;
    }

    .logo_text {
      width: 30%;
      font-size: 20px;
      font-weight: bolder;
      font-style: italic;
    }

    .banner-button {
      background-color: white;
      color: #28373e;
      border: none;
      font-weight: bolder;
      
      padding: 10px 20px;
      font-size: 14px;
      border-radius: 5px;
      cursor: pointer;
      transition: background-color 0.5s ease;
    }

    .banner-button:hover {
      background-color: #c2b5b5;
      color: antiquewhite;
    
    }

    /* Пример контента ниже баннера */
    .content {
      padding: 30px;
      max-width: 800px;
      margin: 0 auto;
    }

    @media (max-width: 600px) {
      .banner {
        flex-direction: column;
        height: auto;
        padding: 10px;
        gap: 10px;
      }

      .banner-button {
        width: 100%;
      }
    }