    * {
      box-sizing: border-box;
    }

    body {
      font-family: 'Inter', sans-serif;
      background-color: #f4f6f8;
      margin: 0;
      padding: 0;
    }

    .tabs-container {
      padding: 20px 0;
      background-color: #f4f6f8;
      text-align: center;
    }

    .tabs-grid-wrapper {
      display: flex;
      justify-content: center;
      width: 100%;
    }

    .tabs-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
      gap: 10px;
      max-width: 1200px;
      width: 100%;
      padding: 0 10px;
    }

        .mobile-menu-button {
      display: none;
      padding: 10px 15px;
      background: #2c3e50;
      color: white;
      border: none;
      border-radius: 4px;
      cursor: pointer;
      margin-bottom: 15px;
    }

    .tab {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      background: white;
      color: #4285f4;
      border: 1px solid #4285f4;
      border-radius: 6px;
      padding: 12px 5px;
      font-weight: 500;
      transition: all 0.2s ease-in-out;
      min-height: 72px;
    }

    .tab i {
      font-size: 20px;
      margin-bottom: 5px;
    }

    .tab:hover {
      background-color: rgba(66, 133, 244, 0.1);
      transform: scale(1.03);
    }

    .tab.active {
      background: #3498db;
      color: white;
      border-color: #3498db;
    }

    @media (max-width: 768px) {
      .mobile-menu-button {
        display: inline-block;
      }

      .tabs-grid {
        display: none;
        flex-direction: column;
      }

      .tabs-grid.show {
        display: flex;
      }
    }