.hero-banner {
  background-color: #f6931e;
  color: #fff;
  text-align: center;
  padding: 100px 20px 60px;
  position: relative;
  overflow: hidden;
}

.hero-banner::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 10%;
  width: 40px;
  height: 40px;
  background: url('paperplane.svg') no-repeat center/contain;
  opacity: 0.7;
}

.hero-banner::after {
  content: "";
  position: absolute;
  right: 15%;
  bottom: 20px;
  width: 50px;
  height: 50px;
  background: url('balloon.svg') no-repeat center/contain;
  opacity: 0.8;
}

.banner-content h1 {
  font-size: 46px;
  font-weight: 700;
}

.banner-content p {
  font-size: 16px;
  margin-top: 10px;
  color: #fff;
}

.banner-content a {
  color: #fff;
  text-decoration: none;
  opacity: 0.9;
}

.banner-content span {
  font-weight: 600;
}

.wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background: url('wave.svg') repeat-x;
  background-size: cover;
}


.activities-section {
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.activity-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
}

.activity-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.activity-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.text-content {
  padding: 25px;
}

.text-content h2 {
  color: #6a1b9a;
  font-size: 22px;
  margin-bottom: 5px;
}

.text-content h4 {
  color: #f6931e;
  font-size: 16px;
  margin-bottom: 15px;
}

.text-content p {
  color: #555;
  font-size: 15px;
  text-align: justify;
}



@media (max-width: 1024px) {
  .activities-section {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 600px) {
  .hero-banner {
    padding: 70px 15px 50px;
  }

  .banner-content h1 {
    font-size: 34px;
  }

  .banner-content p {
    font-size: 14px;
  }

  .activity-card img {
    height: 220px;
  }

  .text-content h2 {
    font-size: 20px;
  }

  .text-content h4 {
    font-size: 15px;
  }

  .text-content p {
    font-size: 14px;
  }
}