.container {
      display: flex;
    }

    .tabs {
      width: 20%;
      padding: 0px;
    }
    .tabs h2 {
      font-size: 20px;
      margin-bottom: 20px;
    }
    .tabs button {
      display: block;
      background: none;
      border: none;
      color: #ccc;
      font-size: 16px;
      padding: 10px 0;
      text-align: left;
      cursor: pointer;
      width: 100%;
      font-family: 'MMC', sans-serif;
    }
    .tabs button.active {
      color: white;
      border-left: 3px solid red;
      padding-left: 7px;
    }
    .content {
      flex-grow: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0px;
      background-color: #000;
      width:80%;
    }
    .content-inner {
      display: flex;
      gap: 40px;
    }
    .content-inner img {
      max-height: 550px;
      width: auto;
    }
    .text {
      max-width: 550px;
    }


@media screen and (max-width: 768px) {
      .container {
        flex-direction: column;
      }

      .tabs {
        width: 100%;
        display: flex;
        overflow-x: auto;
        border-bottom: 1px solid #333;
      }

      .tabs button {
        flex: 1;
        white-space: nowrap;
        padding: 15px;
        text-align: center;
        font-size: 14px;
        border-left: none;
        border-bottom: 3px solid transparent;
      }

      .tabs button.active {
        border-left: none;
        border-bottom: 3px solid red;
        padding-left: 0;
      }

      .content-inner {
        flex-direction: column;
        align-items: center;
      }

      .text {
        max-width: 100%;
      }
    }

