.page-terms-conditions {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Body background is dark, so text should be light */
  background-color: #000; /* From shared.css, ensuring contrast */
}

/* Hero Section */
.page-terms-conditions__hero-section {
  position: relative;
  width: 100%;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
  overflow: hidden;
  background-color: #017439; /* Brand color as background */
}

.page-terms-conditions__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.3; /* Subtle overlay */
}

.page-terms-conditions__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none; /* Ensure no CSS filter changes image color */
}

.page-terms-conditions__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.6); /* Dark overlay for text readability */
  border-radius: 10px;
}

.page-terms-conditions__hero-title {
  font-size: 3.2em;
  color: #FFFF00; /* Custom color for title */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-terms-conditions__hero-description {
  font-size: 1.2em;
  color: #ffffff;
  margin-bottom: 30px;
}

.page-terms-conditions__hero-cta {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-terms-conditions__btn-primary {
  background-color: #C30808; /* Custom color for register/login */
  color: #FFFF00; /* Custom color for register/login font */
  border: none;
}

.page-terms-conditions__btn-primary:hover {
  background-color: #a00606;
}

/* Content Area */
.page-terms-conditions__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  color: #ffffff; /* Ensure text is white on dark background */
}

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

.page-terms-conditions__section-title {
  font-size: 2.5em;
  color: #017439; /* Brand color for main titles */
  margin-top: 50px;
  margin-bottom: 30px;
  text-align: center;
}

.page-terms-conditions__subsection-title {
  font-size: 1.8em;
  color: #FFFF00; /* Custom color for sub-titles */
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-terms-conditions__text-block p {
  margin-bottom: 15px;
  color: #ffffff;
}

.page-terms-conditions__text-link {
  color: #017439; /* Brand color for links */
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-terms-conditions__text-link:hover {
  color: #00a04a;
}

.page-terms-conditions__contact-list {
  list-style: disc inside;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #ffffff;
}

.page-terms-conditions__contact-list li {
  margin-bottom: 8px;
}

/* FAQ Section */
.page-terms-conditions__faq-section {
    background-color: #0d0d0d; /* Slightly lighter dark background for contrast with body */
    padding: 60px 20px;
    color: #ffffff;
}

.page-terms-conditions__faq-section .page-terms-conditions__section-title {
    color: #017439; /* Brand color */
    margin-top: 0;
    text-align: center;
}

.page-terms-conditions__faq-list {
    max-width: 800px;
    margin: 0 auto;
    margin-top: 40px;
}

.page-terms-conditions__faq-item {
    background-color: rgba(255, 255, 255, 0.05); /* Very subtle light background for items */
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}