.business-divisions-section{
    background-color: #DADAE8;
    margin: 0; /* Remove any default margin */
    padding-top: 1px; /* Remove space at the top */
    padding-bottom: 0; /* Remove space at the bottom */
}

.business-divisions-section h2{
    text-align: center;
    font-family: "Raleway", sans-serif;
    padding-top: 20px;
}

.business-images {
  display: flex; /* Makes images in the same row */
  gap: 0.5rem; /* Reduce space between the images */
  padding-left: 2%;
  padding-right: 2%;
}

.image-box {
  position: relative;
  width: 50%; /* Sets the same width for all images */
  aspect-ratio: 7 / 3; /* Ensures height maintains ratio with width */
  overflow: hidden; /* Ensures overlay doesn't overflow */
}

.business-image {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures image covers the area, maintaining aspect ratio */
}

.overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.479); /* Changed to rgba for clarity */
  display: flex;
  justify-content: center; /* Center horizontally */
  align-items: center; /* Center vertically */
  z-index: 1; /* Ensure overlay is above the image */
}

.overlay-text {
  position: relative;
  z-index: 2; /* Ensure text is on top of the overlay */
  color: white;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  font-family: "Quicksand", sans-serif;
}

.business-text {
    background-color: #412b6c; /* Light grey background */
    border-radius: 20px 20px 0px 0px; /* Rounded corners */
    padding-left: 8%;
    padding-right: 8%;
    margin-top: -60px; /* Space above the text block */
    font-family: "Quicksand", sans-serif; /* Font styling */
    color: #333; /* Dark grey text color */
    line-height: 1.6; /* Improve readability */
    height: 300px;
    color: white;
  }
  
  .business-text-info1{
    padding-top: 6%;
  }

  @media (max-width: 1525px) {
    .business-text-info1{
      padding-top: 8%;
    }
  }

  @media (max-width: 769px) {
    .business-text-info1{
      padding-top: 10%;
    }
  }

  .business-text-info2{
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    padding: 0px;
  }

  .business-text-info1 p {
    margin-bottom: 1em; /* Increase space between paragraphs */
  }
  
  .business-text .highlight {
    font-weight: bold; /* Make highlighted text bold */
    color: #412b6c; /* Highlight color */
  }
  
/* Media Queries for Responsiveness */
@media (max-width: 992px) {
    .image-box {
      width: 100%; /* Full width on medium screens */
      aspect-ratio: 20 / 9; /* Adjust aspect ratio */
    }
    .overlay-text {
      font-size: 18px; /* Slightly smaller text */
    }
    .business-text {
      margin-top: -50px; /* Adjust margin */
      height: auto; /* Allow height to adjust */
      padding-left: 25px;
      padding-right: 25px;  
    }
    .business-text-info2{
      font-size: 20px;
    }
  }
  
  @media (max-width: 768px) {
    .business-images {
      flex-direction: column; /* Stack images vertically */
      padding-left: 12%;
      padding-right: 12%;
    }
    .business-text {
      padding-left: 25px;
      padding-right: 25px;
      border-radius: 40px 40px 0 0;
    }
    .business-text-info1{
      font-size: 12px;
    }
    .business-text-info2{
      font-size: 18px;
    }
  }
  
  @media (max-width: 576px) {
    .overlay-text {
      font-size: 16px; /* Further reduce text size */
    }
    .business-text {
      margin-top: -30px; /* Further adjust margin */
      padding-left: 25px;
      padding-right: 25px;
    }
    .business-text-info2{
      font-size: 16px;
    }
  }
  
  .attribution-link3 {
    position: absolute; /* Position the link absolutely within the container */
    bottom: 0px; /* Position it 10px from the bottom */
    right: 5px; /* Position it 10px from the right */
    color: white; /* Text color */
    background: rgba(0, 0, 0, 0); /* Semi-transparent background for contrast */
    padding: 3px 5px; /* Padding around the text */
    border-radius: 3px; /* Rounded corners */
    font-size: 6px; /* Font size */
    text-decoration: none; /* Remove underline */
    z-index: 2; /* Ensure it appears above the image */
  }