  .menu-tabs {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 40px;
    }

    .menu-tab {
      padding: 10px 15px;
      background-color: #eee;
      font-weight: bold;
      text-transform: uppercase;
      letter-spacing: 1px;
      cursor: pointer;
      transition: background 0.3s, color 0.3s, transform 0.2s;
    }

    .menu-tab.active {
      background-color: #111;
      color: #fff;
      transform: scale(1.08);
    }

    .menu-tab:hover {
      background-color: #ccc;
      color: #111;
      transform: scale(1.05);
    }

    .menu-section {
      display: none;
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.5s, transform 0.5s;
    }

    .menu-section.active {
      display: grid;
      grid-template-columns: 1fr 1fr;
      row-gap: 30px;
      column-gap: 50px;
      opacity: 1;
      transform: translateY(0);
      animation: fadeInMenu 0.5s;
    }

    @keyframes fadeInMenu {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .menu-item {
      font-size: 16px;
      letter-spacing: 2px;
      text-transform: uppercase;
      border-bottom: 1px dotted #ccc;
      padding-bottom: 5px;
      opacity: 0;
      transform: translateY(20px);
      animation: fadeInItem 0.5s forwards;
      animation-delay: 0.2s;
    }

    .menu-section.active .menu-item {
      opacity: 1;
      transform: translateY(0);
      animation: fadeInItem 0.5s forwards;
    }

    .menu-section.active .menu-item:nth-child(1) { animation-delay: 0.1s; }
    .menu-section.active .menu-item:nth-child(2) { animation-delay: 0.15s; }
    .menu-section.active .menu-item:nth-child(3) { animation-delay: 0.2s; }
    .menu-section.active .menu-item:nth-child(4) { animation-delay: 0.25s; }
    .menu-section.active .menu-item:nth-child(5) { animation-delay: 0.3s; }
    .menu-section.active .menu-item:nth-child(6) { animation-delay: 0.35s; }
    .menu-section.active .menu-item:nth-child(7) { animation-delay: 0.4s; }
    .menu-section.active .menu-item:nth-child(8) { animation-delay: 0.45s; }
    .menu-section.active .menu-item:nth-child(9) { animation-delay: 0.5s; }
    .menu-section.active .menu-item:nth-child(10) { animation-delay: 0.55s; }
    .menu-section.active .menu-item:nth-child(11) { animation-delay: 0.6s; }
    .menu-section.active .menu-item:nth-child(12) { animation-delay: 0.65s; }
    .menu-section.active .menu-item:nth-child(13) { animation-delay: 0.7s; }
    .menu-section.active .menu-item:nth-child(14) { animation-delay: 0.75s; }
    .menu-section.active .menu-item:nth-child(15) { animation-delay: 0.8s; }
    .menu-section.active .menu-item:nth-child(16) { animation-delay: 0.85s; }
    .menu-section.active .menu-item:nth-child(17) { animation-delay: 0.9s; }
    .menu-section.active .menu-item:nth-child(18) { animation-delay: 0.95s; }
    .menu-section.active .menu-item:nth-child(19) { animation-delay: 1s; }
    .menu-section.active .menu-item:nth-child(20) { animation-delay: 1.05s; }
    .menu-section.active .menu-item:nth-child(21) { animation-delay: 1.1s; }
    .menu-section.active .menu-item:nth-child(22) { animation-delay: 1.15s; }
    .menu-section.active .menu-item:nth-child(23) { animation-delay: 1.2s; }
    .menu-section.active .menu-item:nth-child(24) { animation-delay: 1.25s; }

    @keyframes fadeInItem {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }