.text-image-section {
  padding: 80px 0;
  background: #000014;
  color: #fff;
}


.text-image-wrapper {
  display: flex;
  gap: 60px;
  justify-content: space-between;
}

.text-content {
  width: 50%;
  max-width: 645px;
}

.section-heading {
  font-family: "playfair display", serif;
  font-weight: 700;
  font-size: 54px;
  line-height: 55.6px;
  color: #fff;
  margin: 0px;
  margin-bottom: 45px;
}

.rich-text-content p {
  font-weight: 400;
  font-size: 16px;
  line-height: 22.4px;
  color: #fff;

}

.rich-text-content p {
  margin-bottom: 20px;
}

.rich-text-content p:last-child {
  margin-bottom: 0;
}

.rich-text-content strong {
  font-weight: 600;
  color: #fff;
}

.image-content {
  position: relative;
  width: 40%;
  max-width: 525px;
}

.section-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0px;
  object-fit: cover;
}

.image-caption {
  font-weight: 400;
  font-size: 16px;
  line-height: 22.4px;
  color: rgba(255, 255, 255, 1);
  padding: 0px;
  margin: 0px;
  margin-top: 15px;

}

.bottom-paragraph {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid #333;
}

.bottom-paragraph p {
  font-size: 16px;
  line-height: 1.8;
  color: #e0e0e0;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

@media (max-width: 991.98px) {
  .text-image-wrapper {
    gap: 30px;
  }
  .image-content {
    width: 45%;
}
}

@media (max-width: 767.98px) {
  .text-image-section {
    padding: 50px 0;
  }

  .text-image-wrapper {
    gap: 35px;

    flex-direction: column;
  }

  .text-content {
    width: 100%;
    max-width: 645px;
  }

  .image-content {
    width: 100%;
    max-width: 525px;
  }

  .section-heading {
    font-size: 35px;
    line-height: 36px;
    margin-bottom: 30px;
  }

  .bottom-paragraph {
    margin-top: 40px;
    padding-top: 30px;
  }
}