.custom-image-section {
  position: relative;
  background-size: cover;
  background-position: center;
  min-height: 850px;
}

.overlay-content {
  position: absolute;
  top: 6%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.overlay-content .btn {
  padding: 10px 20px;
  background-color: #2c9a47;
  color: white;
  text-decoration: none;
  border-radius: 4px;
}


.overlay-content .btn:hover {
  background-color: #7ebc42;
}



/* Mobile styles */
@media (max-width: 768px) {
  .custom-image-section {
    min-height: 500px;
  }

  .overlay-content {
    top: 8%;
    transform: translate(-50%, -35%);
  }
  
  .btn {
  display: inline-flex;           /* keep it flexible */
  align-items: center;            /* vertically center text */
  justify-content: center;        /* center text horizontally */
  white-space: normal !important; /* allow wrapping inside */
  text-align: center;             /* align wrapped lines */
  padding: 0.75rem 1.5rem;        /* keep good touch size */
  max-width: 100%;                /* prevent overflow on small screens */
  word-break: break-word;         /* wrap long words/URLs if needed */
}


  .overlay-content .btn {
    font-size: 14px;
    padding: 10px 16px;
    max-width: 90%;
    white-space: normal; /* Allow wrapping if needed */ */
    word-break: break-word;
  }
  


