#ourServicesContainer {
  /*border: 3px solid rgb(12, 3, 173);*/
  /*background-color: #ffffff;*/
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  height: auto;
  /*color: rgb(2, 140, 18);*/
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 25px;
}

/* Flexbox for the dividers */
.insideServisesContainer {
  /*border: 3px solid rgb(255, 0, 0);*/
  display: flex;
  flex-wrap: wrap; /* Allows wrapping on smaller screens */
  justify-content: center;
  gap: 20px;
  width: 100%;
  max-width: 1350px;
}

.titleOurServices {
  /*border: 5px solid rgb(40, 3, 151);*/
  margin-top: 20px;
  margin-bottom: 20px;
  padding: 10px;
  text-align: center;
  width: 300px;
  float: center;
  box-sizing: border-box;
  font-size: max(1.2rem, 2vw);
  background-color: #691;
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 6px;
  box-shadow: 2px 2px 5px #343;
  transition: background-color 0.3s;

}


/* Style for each divider */
#boxOurServices {
  /* border: 3px solid rgb(185, 3, 3); */
  border-radius: 20px;
  background-color: #e3e3e3;
  /*color: aliceblue;*/
  flex: 1 1 30%; /* Adjust width to fit within container */
  max-width: 275px; /* Prevents them from getting too wide */
  padding: 10px;
}

/* Image styling */
.servicesImage {
  /* border: 3px solid rgb(185, 3, 3); */
  width: 275px;
  height: 120px;
  margin: 0 10px 20px 10px;
  /*width: 100%;*/
  border-radius: 10px;
  /*ight: auto;*/
}

/* Responsive Design */
@media (max-width: 768px) {
  .insideOurServices {
    flex-direction: column; /* Stack dividers vertically on smaller screens */
    align-items: center;
  }

  #boxOurServices {
    width: 90%; /* Makes them take full width */
    max-width: 500px;
  }
}

#blueBoldText {
  color: #000666;
  text-align: center;
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 24px;
  /*transform: scaleX(0.9); 
  font-stretch: 75%;*/
  /*font-size: clamp(1.5rem, 3vw, 2.5rem);*/
  /*font-family:Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;*/
}

#learnMoreText {
  /* border: 3px solid rgb(185, 3, 3); */
  width: 200px;
  margin: 0 auto;
  background-color: #000666;
  text-align: center;
  color: #ffffff;
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 20px;
  border-radius: 10px;
  padding: 10px 45px 10px 45px;
  /*transform: scaleX(0.9); 
  font-stretch: 75%;*/
  /*font-size: clamp(1.5rem, 3vw, 2.5rem);*/
  /*font-family:Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;*/
}

#learnMoreText:hover {
  background-color: #444999;
}