.hero-block {
  /* Updated gradient background based on screenshot approximation (white to very light green) */
  background: linear-gradient(90deg, #FFFFFF 0%, #F5F9F2 50%, #F5F9F2 100%);
  position: relative;
  overflow: hidden;

  /* Decorative circle element behind image/text - approximation from screenshot */
  &::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 20%;
    width: 600px;
    height: 600px;
    background: #F0F6EB; /* Lighter green circle */
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
  }

  /* Ensure content is above the background elements */
  .container {
    position: relative;
    z-index: 1;
  }
  
  .hero-image-wrapper {
    position: relative;
    
    img {
      max-width: 100%;
      height: auto;
    }
  }

  .hero-content {
    .hero-body {
      /* Style for the body content */
      p {
        font-size: 1.125rem; /* ~18px */
        line-height: 1.6;
        color: var(--bs-gray-900);
        margin-bottom: 1.5rem;
      }

      h1 {
        font-weight: 800;
        font-size: 2.5rem; /* Larger hero title */
        line-height: 1.2;
        margin-bottom: 1rem;
        color: #212529;
        text-transform: none; /* Override default uppercase if set globally */
      }

      h2 {
        font-weight: 700;
        font-size: 2rem;
        margin-bottom: 1rem;
        color: #212529;
        text-transform: none;
      }

      /* "myICM" styling if it's in a strong tag or specific class */
      strong {
        color: #00614B; /* Dark green brand color */
      }

      /* Subheadline style often seen above H1 */
      .subheadline {
        color: #00614B;
        font-weight: 700;
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
        display: block;
      }
    }

    .hero-actions {
      .btn {
        display: inline-flex;
        align-items: center;
        font-weight: 600;
        font-size: 1rem;
        padding: 0.75rem 1.5rem;
        transition: all 0.3s ease;
        
        i {
          font-size: 0.875em;
          transition: transform 0.2s ease;
        }

        &.btn-primary {
          background-color: #97C03E; /* Updated closer to screenshot lime/green */
          border-color: #97C03E;
          color: #fff;
          
          /* Enhanced hover for primary button */
          &:hover {
            background-color: #88ae37;
            border-color: #88ae37;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(151, 192, 62, 0.4);
          }
        }
        
        &.btn-outline-primary {
          color: #333;
          border-color: #333;
          background: transparent;
          
          /* Enhanced hover for outline button */
          &:hover {
            background-color: #333;
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
          }
        }
      }
    }
  }
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  .hero-block {
    text-align: center;
    padding: 2rem 0;
    
    /* Adjust gradient for mobile if needed */
    background: linear-gradient(180deg, #FFFFFF 0%, #F5F9F2 100%);

    &::before {
      width: 400px;
      height: 400px;
      top: 30%;
      left: 50%;
    }

    .hero-actions {
      justify-content: center;
    }
    
    .hero-image-wrapper {
      margin-bottom: 2rem;
    }

    .hero-content {
      h1 {
        font-size: 2rem;
      }
      h2 {
        font-size: 1.75rem;
      }
    }
  }
}
