   a {
      text-decoration: none;
    }

    /* teams start */
    .main_teams_container {
      margin: 0;
      padding: 0;
      /*background-color: #f9f9f9;*/
      background-color: #ffffff;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .teams-container {
      width: 60%;
      background-color: #ffffff;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
      padding: 40px 20px;
    }

    .title {
      font-size: 24px;
      font-weight: bold;
      padding-left: 50px;
      margin-bottom: 20px;
      color: #333;
    }

    .teams-list {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      padding-left: 50px;
    }

    .team-item {
      display: flex;
      align-items: center;
      gap: 15px;
    }

    .team-logo {
      width: 100px;
      height: 100px;
      border-radius: 50%;
      object-fit: cover;
    }

    .team-details {
      display: flex;
      flex-direction: column;
    }

    .team-name {
      font-size: 16px;
      font-weight: bold;
      color: #333;
      margin: 0;
    }

    .team-links {
      font-size: 14px;
    }

    .team-links a {
      color: #007bff;
      text-decoration: none;
      margin-right: 10px;
    }

    .team-links a:hover {
      text-decoration: underline;
    }

    @media (max-width: 768px) {
      .teams-container {
        width: 90%;
        padding: 0 40px;
      }

      .team-item{
        gap: 50px;
      }

      .title {
        padding-left: 20px;
        font-size: 20px;
      }

      .teams-list {
        padding-left: 20px;
        grid-template-columns: 1fr;
        gap: 15px;
      }

      .team-logo {
        width: 80px;
        height: 80px;
      }

      .team-name {
        font-size: 14px;
      }

      .team-links {
        font-size: 12px;
      }
    }

    @media (max-width: 576px) {
      .teams-container {
        width: 100%;
        box-shadow: none;
        border-radius: 0;
      }

      .title {
        padding-left: 0;
        font-size: 18px;
      }

      .teams-list {
        padding-left: 0;
        grid-template-columns: 1fr;
      }

      .team-logo {
        width: 70px;
        height: 70px;
      }

     .team-logo-2{
         width: 80px !important;
         height: 80px !important;
     }

      .team-name {
        font-size: 12px;
      }

      .team-links {
        font-size: 10px;
      }
    }
    /* teams end */