.home-container {
  margin: 0 auto;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.home-container h2 {
  font-size: 46px;
  font-weight: 700;
  color: #0f395c;
  margin-top: 4rem;
  margin-bottom: 2rem;
}

.home-container h3 {
  font-weight: 700;
  color: #044c4e;
  margin-bottom: 2rem;
  font-size: 38px;
  line-height: 100%;
}

.description p,
.description li {
  font-size: 20px;
  line-height: 24px;
  font-weight: 500;
}

/* New wrapper for each section */
.content-wrapper {
  position: relative;
  padding: 1rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
}

/* Base class for all image sections */
.image-section {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
  filter: brightness(0.95) contrast(1) saturate(1);
  opacity: 0.5;
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    black 15%,
    black 85%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    black 15%,
    black 85%,
    transparent 100%
  );
}

/* Specific images */
.image-section.image-1 {
  background-image: url("/static/images/billboards/billboards-1.png");
}

.image-section.image-2 {
  background-image: url("/static/images/billboards/billboards-2.png");
}

.image-section.image-3 {
  background-image: url("/static/images/billboards/billboards-3.png");
}

.text-section {
  position: relative;
  width: 100%;
  z-index: 1;
  padding: 0 2rem;
}

.card-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}

.card-section {
  max-width: 1000px;
  padding: 20px 30px 40px;
  border-radius: 10px;
  background-color: #effbfb;
  box-shadow: 0px 4px 4px 0px #00000040;
  text-align: justify;
}

.card-section h3 {
  margin-bottom: 1.5rem;
  color: #1a629e;
  text-align: center;
}

.submit-button {
  padding: 10px;
  border-radius: 10px;
  color: white;
  font-weight: 700;
  line-height: 26.04px;
  transition: background 0.3s ease, transform 0.2s ease;
  background: linear-gradient(270deg, #1d9097 0%, rgba(9, 47, 49, 0.8) 100%);
  border-color: unset;
  text-decoration: none;
  width: 13%;
  margin: 20px auto;
  display: inline-block;
}

.submit-button:hover {
  background: linear-gradient(270deg, #1d9097 0%, rgba(9, 47, 49, 1) 100%);
  transform: scale(1.05);
}
