.background-wrapper {
  font-family: sans-serif, g;
  padding: 0;
  overflow: hidden;
  background-color: aliceblue;

}

.wrapper {
  max-width: 950px;
  margin: 50px auto;
  padding: 75px 35px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  background-color: #41806e4b;
}


h3 {
  font-size: clamp(16px, 3vw, 28px);
  font-weight: 300;
  margin-bottom: 20px;
  text-align: left;
  color: #53a78a;
  transition: color var(--main-transition);
}

h3.centered {
  text-align: left;
}

h3:hover {
  color: #41806e; /* Slightly darker shade for hover effect */
}

.highlight-box {
  background-color: beige;
  border-radius: 30px;
  padding: 10px;
  transition: background-color var(--main-transition);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.highlight-box:hover {
  background-color: #e0d5b5; /* Lighter beige for hover */
}

.spacer-div {
  height: 6rem;
  border-radius: 1.5rem;
  color: #fff;
  font-size: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 1rem;
  transition: background-color var(--main-transition);
}

.spacer-color-1 {
  background-color: #c4e0ca;
  color: black;
}

.spacer-color-1:hover {
  background-color: #427d4e; /* Darker green on hover */
}

.big-title {
  font-size: 36px;
  position: relative;
  white-space: nowrap;
  margin: 3rem 0;
  border: 2px;
  background-color: aquamarine;
  text-align: center;
  transition: background-color var(--main-transition);
}

.big-title:hover {
  background-color: #7edfc5; /* Lighter aquamarine on hover */
}

@media (max-width: 900px) {
  .wrapper {
    max-width: 700px;
    margin: 35px auto;
    padding: 20px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12); /* Slightly adjusted shadow for smaller screens */
  }

  .spacer-div {
    height: 4rem;
    font-size: 2rem;
    border-radius: 1rem;
    padding-left: 0.5rem;
  }

  .big-title {
    font-size: 5rem;
  }
}