.hero-section {
  background: linear-gradient(135deg, #041a1a, #004b4b);
  color: #fff;
  padding: 100px 20px 80px 20px;
  text-align: center;
  position: relative;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.hero-section h1 {
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.2;
}

.hero-section p {
  font-size: 1.3rem;
  font-weight: 300;
  color: #d1e8e2;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.image-content {
  width: 100%;
  height: auto;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-content img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  max-width: 500px; /* Optional: limit max size */
}

.content {
  margin-top: 40px;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 2.2rem;
  }
  .hero-section p {
    font-size: 1rem;
  }
  .overlay_text {
    font-size: 16px;
    top: 50%;
    left: 50%;
  }
  .image-content img {
    max-width: 300px;
  }
}

.text-content p {
  color: #013333;

  margin-bottom: 15px;
}
