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

.page-terms-conditions__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 40px;
  text-align: center;
  background-color: #08160F; /* Background */
  position: relative;
  overflow: hidden;
}

.page-terms-conditions__hero-image-wrapper {
  width: 100%;
  max-width: 1920px; /* Adjust as needed for hero image */
  margin-bottom: 20px;
}

.page-terms-conditions__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

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

.page-terms-conditions__main-title {
  font-size: clamp(28px, 4vw, 48px);
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.page-terms-conditions__hero-description {
  font-size: clamp(16px, 2vw, 20px);
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
}

.page-terms-conditions__cta-button {
  display: inline-block;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-terms-conditions__cta-button:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-terms-conditions__cta-button--small {
  font-size: 16px;
  padding: 10px 20px;
}

.page-terms-conditions__content-section {
  padding: 60px 20px;
}

.page-terms-conditions__container {
  max-width: 1000px;
  margin: 0 auto;
}

.page-terms-conditions__section-title {
  font-size: clamp(24px, 3vw, 36px);
  color: #F2FFF6; /* Text Main */
  margin-bottom: 25px;
  font-weight: 600;
}

.page-terms-conditions__paragraph {
  font-size: 17px;
  margin-bottom: 20px;
  line-height: 1.7;
}

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

/* FAQ Section */
.page-terms-conditions__faq-section {
  margin-top: 50px;
  padding: 30px;
  background-color: #11271B; /* Card B G */
  border-radius: 12px;
  border: 1px solid #2E7A4E; /* Border */
}

.page-terms-conditions__faq-title {
  font-size: clamp(22px, 2.5vw, 30px);
  color: #F2FFF6; /* Text Main */
  margin-bottom: 30px;
  text-align: center;
}

.page-terms-conditions__faq-item {
  margin-bottom: 15px;
  background-color: #0A4B2C; /* Deep Green */
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #2E7A4E;
}

.page-terms-conditions__faq-item:last-child {
  margin-bottom: 0;
}

.page-terms-conditions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background-color: #11A84E; /* Main Color */
  color: #F2FFF6; /* Text Main */
  font-weight: bold;
  font-size: 18px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  list-style: none;
}

.page-terms-conditions__faq-question::-webkit-details-marker {
  display: none;
}

.page-terms-conditions__faq-question:hover {
  background-color: #22C768; /* Auxiliary Color */
}

.page-terms-conditions__faq-qtext {
  flex-grow: 1;
}

.page-terms-conditions__faq-toggle {
  font-size: 24px;
  line-height: 1;
  margin-left: 15px;
}

.page-terms-conditions__faq-answer {
  padding: 15px 25px 20px;
  background-color: #11271B; /* Card B G */
  color: #A7D9B8; /* Text Secondary */
  font-size: 16px;
  line-height: 1.7;
}

.page-terms-conditions__faq-answer p {
  margin-bottom: 0;
}

/* Color Contrast based on body background #08160F (Dark) */
.page-terms-conditions__dark-bg {
  background-color: #08160F;
  color: #F2FFF6;
}

.page-terms-conditions__light-bg {
  background-color: #11271B;
  color: #F2FFF6;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .page-terms-conditions {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-terms-conditions__hero-section {
    padding: 10px 0 30px;
  }

  .page-terms-conditions__hero-content {
    padding: 0 15px;
  }

  .page-terms-conditions__main-title {
    font-size: clamp(24px, 7vw, 36px);
  }

  .page-terms-conditions__hero-description {
    font-size: clamp(15px, 3vw, 18px);
  }

  .page-terms-conditions__cta-button {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    font-size: 16px;
  }

  .page-terms-conditions__cta-button--small {
    font-size: 14px;
    padding: 10px 15px;
  }

  .page-terms-conditions__content-section {
    padding: 40px 15px;
  }

  .page-terms-conditions__container {
    padding: 0;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-terms-conditions__section-title {
    font-size: clamp(20px, 5vw, 28px);
    margin-bottom: 20px;
  }

  .page-terms-conditions__paragraph {
    font-size: 15px;
  }

  .page-terms-conditions img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    min-width: unset;
    min-height: unset;
  }

  .page-terms-conditions__faq-section {
    padding: 20px 15px;
  }

  .page-terms-conditions__faq-title {
    font-size: clamp(20px, 5vw, 26px);
    margin-bottom: 20px;
  }

  .page-terms-conditions__faq-question {
    padding: 15px 20px;
    font-size: 16px;
  }

  .page-terms-conditions__faq-answer {
    padding: 10px 20px 15px;
    font-size: 14px;
  }
}