    body { font-family: Arial, sans-serif; }

    .hero {
      background: linear-gradient(to right, rgba(0,140,110,0.85), rgba(0,140,110,0.95)), url('hero-image.jpg') center/cover no-repeat;
      color: white;
      padding: 120px 0;
    }

    .tagline {
      background: #60c4b2;
      color: white;
      text-align: center;
      padding: 10px 0;
      font-weight: bold;
    }

    .section-light {
      background: #f6f6f6;
      padding: 60px 0;
    }

    .cta-card {
      border-radius: 12px;
      padding: 40px 20px;
      text-align: center;
      color: white;
    }

    .cta-card h4 {
      margin-top: 15px;
      font-weight: bold;
    }

    .btn-custom {
      background: #007c6d;
      color: white;
      border-radius: 50px;
      padding: 10px 25px;
      font-weight: bold;
    }

    .btn-custom:hover {
      background: #005e52;
      color: white;
    }


/* modal styling */

/* * {
  box-sizing: border-box;
  font-family: system-ui, -apple-system, sans-serif;
} */

/* Open button */
.open-modal {
  padding: 12px 20px;
  background: #6f7cff;
  color: white;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
}

/* Overlay */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

/* Show when targeted */
.modal-overlay:target {
  opacity: 1;
  pointer-events: auto;
}

/* Modal box */
.modal {
  background: #ffffff;
  padding: 24px;
  width: 420px;
  max-width: 90%;
  border-radius: 10px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Button */
.modal-btn {
  display: block;
  text-align: center;
  background: #6f7cff;
  color: white;
  padding: 12px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 20px;
}
