.young-explorers-section {
  padding: 80px 20px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.content-wrapper-kids {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.content-left-kids {
  padding-right: 20px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: bold;

  margin-bottom: 30px;
  line-height: 1.2;
}

.content-text-kids {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 25px;
  text-align: justify;
}

.highlight-box {
  background: linear-gradient(135deg, #4a7c59 0%, #2c5530 100%);
  color: white;
  padding: 30px;
  border-radius: 15px;
  margin: 30px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.highlight-box h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #fff;
}

.highlight-box p {
  color: #f0f0f0;
  font-size: 1rem;
  line-height: 1.6;
}


.program-title {
  font-size: 1.4rem;
  color: #4a7c59;
  font-weight: 600;
  margin-bottom: 8px;
}

.program-subtitle {
  color: #666;
  font-style: italic;
  font-size: 1rem;
}

.image-right {
  position: relative;
  height: 600px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  background: linear-gradient(135deg, #4a7c59 0%, #2c5530 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-placeholder {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.2rem;
  text-align: center;
}

.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: white;
  padding: 30px;
  text-align: center;
}


/* Responsive Design */
@media (max-width: 768px) {
  .young-explorers-section {
    padding: 60px 15px;
  }

  .content-wrapper-kids {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .content-left-kids {
    padding-right: 0;
    order: 2;
  }

  .image-right {
    order: 1;
    height: 380px;
    margin-bottom: 16px;
  }

  .section-title {
    font-size: clamp(1.8rem, 1.4rem + 1.8vw, 2rem);
    text-align: center;
    margin-bottom: 20px;
  }

  .content-text-kids {
    font-size: 1rem;
    margin-bottom: 18px;
  }

  .highlight-box {
    padding: 22px;
    margin: 22px 0;
  }

  .highlight-box h3 {
    font-size: 1.15rem;
  }

  .program-title {
    font-size: 1.15rem;
  }

  .cta-section {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: clamp(1.5rem, 1.2rem + 2vw, 1.7rem);
  }

  .content-text-kids {
    font-size: 0.95rem;
  }

  .highlight-box {
    padding: 18px;
  }

  .image-right {
    height: 300px;
  }

  .image-overlay {
    padding: 18px;
  }

  .overlay-text {
    font-size: 0.98rem;
  }
}

@media (max-width: 360px) {
  .image-right { height: 260px; }
  .section-title { margin-bottom: 16px; }
  .content-text-kids { margin-bottom: 14px; }
}

/* Hover effects */
.highlight-box {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.image-right {
  transition: transform 0.3s ease;
}

.image-right:hover {
  transform: scale(1.02);
}
