
.hero-section {
  background-image: url('your-background-image.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #000;
  padding: 160px 20px 20px;
  display: flex;
  justify-content: center;
}

.container {
  display: grid;
  grid-template-columns: 350px 1fr; /* Image + Text */
  gap: 50px;
  max-width: 1200px;
  align-items: start;
}

.image-block {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.image-wrapper {
  width: 350px;
  height: 350px;
  border-radius: 50%;
  border: 6px solid green;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 25px rgba(0, 255, 0, 0.079);
}

.circular-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center; /* centers image inside circle */
}


.caption {
  margin-top: 15px;
  font-size: 20px;
  font-weight: bold;
  color: green;
  text-align: center;
}

.text-content h2 {
  font-size: 2.5em;
  margin-bottom: 20px;
}

.text-content h3 {
  font-size: 1.8em;
  margin-top: 30px;
  margin-bottom: 15px;
  color: #006400;
}

.text-content p {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 15px;
}

.highlight {
  background: none;
  color: #006400;
  font-size: 35px;
  font-weight: bolder;
}

/* Responsive */
@media (max-width: 768px) {
  .container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .text-content {
    margin-top: 30px;
  }
  .text-content h2,
  .text-content h3,
  .text-content p {
    text-align: left;
  }
}


/* Responsive adjustments */
@media (max-width: 768px) {
    .container {
        flex-direction: column; /* Stack elements vertically on smaller screens */
        text-align: center; /* Center text when stacked */
    }

    .image-wrapper {
        margin-bottom: 30px; /* Add space below image when stacked */
    }

    .text-content {
        max-width: 100%; /* Allow text to take full width */
    }
}


.hero2 {
  background: #f9f9f9;
  padding: 80px 40px; /* top/bottom + left/right padding */
  color: #333;
  text-align: left;
}

.hero2 h3 {
  font-size: 1.8em;
  margin-top: 40px;
  margin-bottom: 15px;
  color: #006400;
  border-left: 5px solid green;
  padding-left: 10px;
}

.hero2 p {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 20px;
  max-width: 1200px;     /* allow it to stretch wider */
  margin-left: auto;     /* keep it centered */
  margin-right: auto;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .hero2 {
    padding: 50px 20px;
  }

  .hero2 h3 {
    font-size: 1.5em;
  }

  .hero2 p {
    font-size: 1em;
    line-height: 1.6;
  }
}
