/*Exibitor section css*/
    
    .section-title {
      font-weight: bold;
      color: #7a3b00;
      text-transform: uppercase;
      margin: 15px 0;
      text-align: center;
    }

    .sponsor-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
    }

    .sponsor-card {
      background: #fff;
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      padding: 20px;
      max-width: 280px;
      /*display: flex;*/
      /*justify-content: center;*/
      /*align-items: center;*/
    }

    /*.sponsor-card img {*/
    /*  max-width: 100%;*/
    /*  height: auto;*/
    /*  object-fit: contain;*/
    /*}*/
    .sponsor-logo {
        width: 250px;
        height: 140px;
        /*padding: 1.5rem;*/
      object-fit: contain;
    }

    @media (max-width: 768px) {
      .sponsor-grid {
        gap: 20px;
      }
      .sponsor-card {
        max-width: 200px;
      }
      .sponsor-logo {
            width: 185px;
            height: 100px;
      }
    }