.about-section {
    padding: 60px 20px;

    color: #fff;
  }
  
  .about-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
  }
  
  .about-content {
    flex: 1;
    text-align: left;
  }
  
  .about-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #4caf50;
    margin-bottom: 20px;
  }
  
  .about-text {
    font-size: 1.2rem;
    color: #000000;
    line-height: 1.8;
    margin-bottom: 20px;
  }
  
  .about-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .about-image {
    width: 80%;
    max-width: 700px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  }
  
  @media (max-width: 768px) {
    .about-wrapper {
      flex-direction: column;
      text-align: center;
    }
  
    .about-content {
      margin-bottom: 20px;
    }
  
    .about-title {
      font-size: 2rem;
    }
  
    .about-text {
      font-size: 1rem;
    }
  
    .about-image {
      max-width: 80%;
    }
  }
  






  .sports-section {
    padding: 60px 20px;

    color: #fff;
  }
  
  .section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #4caf50;
    margin-bottom: 20px;
  }
  
  .section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #222222;
    line-height: 1.6;
    margin-bottom: 40px;
  }
  
  .sports-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 20px;
  }
  
  .sport-item {
    text-align: center;
    padding: 20px;
    background-color: #292929;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .sport-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.8);
  }
  
  .sport-icon {
    font-size: 3rem;
    margin-bottom: 10px;
  }
  
  .sport-name {
    font-size: 1rem;
    font-weight: 600;
    color: #e1e1e1;
  }
  
  @media (max-width: 768px) {
    .sports-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 480px) {
    .sports-grid {
      grid-template-columns: 1fr;
    }
  }
  