/* Basic styling placeholder, adjust to match design */
.custom-content-list {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  font-family: "Samas", Sans-serif;
}
.content-item {
  display: flex;
  flex-direction: column;
}
.gallery-wrapper.swiper-container {
  position: relative;
  width: 100%;
  margin-bottom: 1.5rem;
  overflow: hidden;
}

.gallery-wrapper .swiper-slide img {
  width: 100%;
  height: 700px;
  object-fit: cover;
  display: block;
}
.info-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  align-items: start;
  padding: 1rem;
}
.item-title {
  font-size: 2.5rem;
  font-weight: 400;
  color: #000000;
  margin-bottom: 1rem;
}
.item-button {
  display: inline-block;
  background: #000;
  color: #fff;
  padding: 0.5rem 1.5rem;
  text-decoration: none;
  margin-bottom: 1.5rem;
}
.terms-list {
  list-style: none;
  margin: 0;
  padding-left: 1.2rem;
  color: #000000;
}
.terms-list li {
  margin: 0.25rem 0;
}

/* Wellness Section Styles */
.wellness-list {
    display: flex;
    flex-direction: column;
    gap: 5rem; /* Space between wellness items */
}

.wellness-item {
    max-width: 100%;
    margin: 0 auto; /* Center the items */
    font-family: sans-serif;
}

.wellness-banner img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 2rem;
}

.wellness-content {
    padding: 0 1rem; /* Some padding for text */
}

.wellness-title {
    font-size: 1.2rem;
    font-family: "Samas", Sans-serif;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    color: #000000;
}

.wellness-description {
    font-size: 1rem;
    font-family: "Samas", Sans-serif;
    line-height: 1.6;
    color: #000000;
    width: 70%;
}

.wellness-description p,
.wellness-description ul {
    margin-bottom: 1.5rem;
}

.wellness-description ul {
    list-style-position: inside;
    padding-left: 0.5rem;
}

@media (max-width: 1024px) {
  .info-wrapper {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-wrapper .swiper-slide img {
    height: 550px;
  }
}

@media (max-width: 767px) {
  .gallery-wrapper.swiper-container {
    overflow: hidden;
  }
  .gallery-wrapper .swiper-slide img {
    height: 450px!important;
  }
  .info-wrapper {
    grid-template-columns: 1fr;
    gap: 0.5rem!important;
    display: flex;
    flex-direction: column;
  }
  .info-col-main {
    order: 1;width: 100%;
  }
  .info-col-main .item-button {
    display: none;
  }
  .info-col-terms {
    order: 2;
  }
  .item-title {
    text-align: center;
  }
  /* New button at the bottom */
  .info-wrapper::after {
    content: "";
    order: 3;
    display: block;
    margin: 1rem auto 0;
  }
  .content-item {
    position: relative;
  }
  .content-item::after {
    content: attr(data-button-text);
    display: block;
    background: #000;
    color: #fff;
    padding: 0.5rem 1.5rem;
    text-decoration: none;
    width: 150px;
    text-align: center;
    margin: 1rem auto;
    order: 3;
  }
}