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

.page-terms-conditions__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column; /* Image on top, content below */
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding as body handles --header-offset */
  text-align: center;
  overflow: hidden; /* Ensure content doesn't overflow */
}

.page-terms-conditions__hero-image-wrapper {
  width: 100%;
  max-width: 1920px; /* Max width for the image */
  margin-bottom: 30px; /* Space between image and text */
}

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

.page-terms-conditions__hero-content {
  max-width: 900px;
  width: 100%; /* Ensure it takes full width within max-width */
  z-index: 1; /* Ensure text is above any subtle background elements */
  padding: 0 15px;
  box-sizing: border-box;
}

.page-terms-conditions__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  max-width: 100%;
  font-size: clamp(1.8em, 4vw + 1rem, 3.2em); /* Single clamp for responsive font size */
}

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

.page-terms-conditions__cta-button {
  display: inline-block;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button color */
  color: #F2FFF6; /* Button text color */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  max-width: 100%; /* Ensure button responsiveness */
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

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

.page-terms-conditions__content-section {
  padding: 50px 0;
  background-color: #08160F; /* Ensure consistent background */
}

.page-terms-conditions__container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-terms-conditions__section-title {
  color: #F2C14E; /* Gold color for section titles */
  margin-top: 40px;
  margin-bottom: 25px;
  font-size: 2em;
  font-weight: bold;
  border-bottom: 2px solid #2E7A4E; /* Border color */
  padding-bottom: 10px;
}

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

.page-terms-conditions__highlight {
  color: #57E38D; /* Glow color for highlights */
  font-weight: bold;
}

.page-terms-conditions__content-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  max-width: 800px; /* Recommended content image size */
  object-fit: cover;
  min-width: 200px; /* Minimum size requirement */
  min-height: 200px;
}

.page-terms-conditions__text-link {
  color: #57E38D; /* Glow color for links */
  text-decoration: underline;
}

.page-terms-conditions__text-link:hover {
  color: #2AD16F;
}

/* FAQ Section Styling */
.page-terms-conditions__faq-section {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid #1E3A2A; /* Divider color */
}

.page-terms-conditions__faq-list {
  margin-top: 30px;
}

.page-terms-conditions__faq-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border color */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #F2FFF6; /* Text Main */
}