.experience-section {
    padding: 60px 20px;
    background-color: #f6f6f6;
    color: #333;
  }
  
  .experience-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
  }
  
  .experience-text {
    flex: 1;
    text-align: left;
  }
  
  .experience-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #4caf50;
  }
  
  .experience-description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
  }
  
  .read-more-btn {
    display: inline-block;
    padding: 10px 25px;
    font-size: 1rem;
    text-transform: uppercase;
    background-color: #4caf50;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .read-more-btn:hover {
    background-color: #4caf50;
  }
  
  .experience-image {
    flex: 1;
    text-align: center;
    position: relative;
  }
  
  .action-image {
    max-width: 90%;
    height: auto;
    border-radius: 10px;
  }
  
  .sponsors {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
  }
  
  .sponsors img {
    max-height: 40px;
    filter: grayscale(100%);
    opacity: 0.8;
  }
  
  .sponsors img:hover {
    filter: none;
    opacity: 1;
  }
  
  @media (max-width: 768px) {
    .experience-wrapper {
      flex-direction: column;
      text-align: center;
    }
  
    .experience-text {
      margin-bottom: 20px;
    }
  
    .experience-image {
      text-align: center;
    }
  }
  





  .activities-section {
    padding: 60px 20px;
    background-color: #fdfdfd;
    text-align: center;
  }
  
  .section-title {
    font-size: 2.5rem;
    color: #222;
    margin-bottom: 20px;
  }
  
  .section-subtitle {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 40px;
  }
  
  .activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
  }
  
  .activity-card {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
  }
  
  .activity-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  }
  
  .activity-icon {
    font-size: 3rem;
    margin-bottom: 20px;
  }
  
  .activity-title {
    font-size: 1.5rem;
    color: #222;
    margin-bottom: 10px;
  }
  
  .activity-text {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
  }
  




  .cta-section {
    background: linear-gradient(120deg, #1c1c1c, #2c2c2c);
    color: #fff;
    text-align: center;
    padding: 60px 20px;
    position: relative;
  }
  
  .cta-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;    opacity: 0.15;
    z-index: 0;
  }
  
  .cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
  }
  
  .cta-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: #4caf50;
  }
  
  .cta-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #dcdcdc;
    margin-bottom: 40px;
  }
  
  .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
  }
  
  .cta-btn {
    display: inline-block;
    padding: 15px 40px;
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
  }
  
  .primary-btn {

    color: #000;
  }
  
  .secondary-btn {
    background-color: transparent;
    color: #ffa500;
    border: 2px solid #4caf50;
  }
  
  .cta-btn:hover {
    transform: translateY(-5px);
  }
  
  .primary-btn:hover {
    background-color: #4caf50;
  }
  
  .secondary-btn:hover {
    color: #4caf50;
    border-color: #e69500;
  }
  
  @media (max-width: 768px) {
    .cta-title {
      font-size: 2rem;
    }
  
    .cta-text {
      font-size: 1rem;
    }
  
    .cta-buttons {
      flex-direction: column;
      gap: 15px;
    }
  }
  