.page-terms-conditions {
  background-color: #08160F;
  color: #F2FFF6;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-terms-conditions__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 10px;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
}

.page-terms-conditions__hero-image-wrapper {
  width: 100%;
  max-height: 500px;
  overflow: hidden;
  margin-bottom: 20px;
}

.page-terms-conditions__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  min-height: 200px; /* Ensure minimum size */
}

.page-terms-conditions__hero-content {
  max-width: 900px;
  padding: 0 20px;
}

.page-terms-conditions__main-title {
  font-weight: bold;
  line-height: 1.2;
  color: #F2C14E; /* Gold */
  margin-bottom: 20px;
}

.page-terms-conditions__intro-text {
  font-size: 1.1em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
}

.page-terms-conditions__content-section {
  padding: 40px 0;
  margin-bottom: 20px;
  border-top: 1px solid #1E3A2A; /* Divider */
}

.page-terms-conditions__container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-terms-conditions__section-title {
  color: #57E38D; /* Glow */
  font-weight: bold;
  margin-bottom: 20px;
  font-size: 2em;
}

.page-terms-conditions__paragraph {
  margin-bottom: 15px;
  color: #F2FFF6; /* Text Main */
}

.page-terms-conditions__list {
  list-style: disc inside;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #F2FFF6; /* Text Main */
}

.page-terms-conditions__list-item {
  margin-bottom: 8px;
}

.page-terms-conditions__btn {
  display: inline-block;
  padding: 12px 25px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background 0.3s ease;
  margin-top: 20px;
  white-space: nowrap;
}

.page-terms-conditions__btn:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
}

.page-terms-conditions__image {
  width: 100%;
  height: auto;
  display: block;
  margin-top: 30px;
  border-radius: 8px;
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-terms-conditions__main-title {
    font-size: 1.8em;
  }

  .page-terms-conditions__section-title {
    font-size: 1.6em;
  }

  .page-terms-conditions__intro-text {
    font-size: 1em;
  }

  .page-terms-conditions__btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }

  .page-terms-conditions__hero-image-wrapper {
    max-height: 300px;
  }

  .page-terms-conditions__image {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-terms-conditions__main-title {
    font-size: 1.5em;
  }

  .page-terms-conditions__section-title {
    font-size: 1.4em;
  }

  .page-terms-conditions__hero-image-wrapper {
    max-height: 250px;
  }
}