/* vision.css */
.HaveAVision {
  width: 100%;
  padding: 30px 15px; /* Further reduce padding for very small screens */
  display: flex;
  flex-direction: column;
  align-items: center;
}

.Rectangle44 {
  background: #DFF5FF;
  border-radius: 10px;
  position: relative;
  width: 95%; /* Take up even more width on small screens */
  max-width: 890px;
  height: auto;
  padding: 10px; /* Slightly reduce internal padding */
  box-sizing: border-box;
}

.HaveAVisionWeCanHelpToMakeItReal {
  position: static;
  color: black;
  font-size: 12px; /* Further reduce font size for very small screens */
  font-family: Montserrat;
  font-weight: 400;
  line-height: 1.2; /* Adjust line height */
  letter-spacing: 0.5px; /* Adjust letter spacing */
  word-wrap: break-word;
  text-align: center;
  width: 100%;
}

.Button {
  background: #20864A;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px; /* Further reduce top margin */
  width: 90%; /* Make the button take up more width */
  max-width: 281px;
  height: 35px; /* Reduce button height */
  box-sizing: border-box;
}

.GetInTouch {
  color: white;
  font-size: 16px; /* Further reduce font size */
  font-family: Montserrat;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.5px;
  word-wrap: break-word;
}

/* Media Query for larger tablets (min-width: 600px) - Adjust as needed */
@media (min-width: 600px) {
  .HaveAVision {
      padding: 40px 20px;
  }

  .Rectangle44 {
      width: 90%;
      padding: 15px;
      font-size: 20px; /* Slightly increase font size on larger mobiles/small tablets */
  }

  .HaveAVisionWeCanHelpToMakeItReal {
      font-size: 16px;
      line-height: 1.3;
      letter-spacing: 1px;
  }

  .Button {
      margin-top: 25px;
      height: 40px;
  }

  .GetInTouch {
      font-size: 18px;
      letter-spacing: 0.5px;
  }
}

/* Media Query for larger tablets and desktops (min-width: 768px) */
@media (min-width: 768px) {
  .HaveAVision {
      padding: 50px 0;
  }

  .Rectangle44 {
      width: 890px;
      height: 70px;
      padding: 0;
  }

  .HaveAVisionWeCanHelpToMakeItReal {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      font-size: 20px;
      line-height: 50px;
      letter-spacing: 2px;
  }

  .Button {
      margin-top: 30px;
      width: 281px;
      height: 50px;
  }

  .GetInTouch {
      font-size: 24px;
      line-height: 25px;
      letter-spacing: 1px;
  }
}