body {
  font-family: "Sen", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}
.title-text {
  font-size: clamp(1.8rem, 5vw, 2.5rem); /* scales between 1.8rem to 2.5rem */
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  color: rgb(47, 79, 79);
  font-family: "Poetsen One", sans-serif;
}

.subtitle-text {
  font-size: clamp(1.2rem, 3vw, 1.5rem); /* scales between 1.2rem to 1.5rem */
  opacity: 0.8;
  font-weight: 500;
  margin-bottom: 2rem;
}

.content {
  font-size: clamp(1rem, 2.5vw, 1.2rem); /* scales between 1rem to 1.2rem */
  line-height: 1.5;
  color: #000 !important;
  text-align: justify;

}
.color-gray {
  color: rgb(169, 169, 169);
}
.color-white {
  color: white !important;
}
.color-black {
  color: black !important;
}
.cta-button {
  background-color: #2c6e64;
  color: white;
  border: none;
  padding: 0.8rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  /* margin-bottom: 2rem; */
}

.cta-button:hover {
  background-color: #1d4e47;
  transform: translateY(-3px);
}