.page-terms-conditions {
  color: #333333; /* Dark text for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-terms-conditions__hero-section {
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
  background-color: #000000; /* Dark background for hero */
  color: #FFFFFF; /* Light text for dark background */
  text-align: center;
  padding-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.page-terms-conditions__hero-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
  position: relative;
  z-index: 2;
}

.page-terms-conditions__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FCBC45; /* Highlight title with accent color */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-terms-conditions__hero-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-terms-conditions__hero-button,
.page-terms-conditions__contact-button,
.page-terms-conditions__cta-button {
  display: inline-block;
  background-color: #FCBC45; /* Login button color */
  color: #000000; /* Dark text for light button */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-terms-conditions__hero-button:hover,
.page-terms-conditions__contact-button:hover,
.page-terms-conditions__cta-button:hover {
  background-color: #e0a53b;
  transform: translateY(-2px);
}

.page-terms-conditions__content-area {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #FFFFFF;
}

.page-terms-conditions__section {
  margin-bottom: 30px;
  padding: 20px;
  border-bottom: 1px solid #eee;
}

.page-terms-conditions__section:last-child {
  border-bottom: none;
}

.page-terms-conditions__section-title {
  font-size: 1.8em;
  color: #000000; /* Main color for section titles */
  margin-bottom: 15px;
  border-left: 5px solid #FCBC45;
  padding-left: 10px;
}

.page-terms-conditions__paragraph {
  font-size: 1em;
  color: #333333;
  margin-bottom: 10px;
}

.page-terms-conditions__cta-section {
  background-color: #000000;
  color: #FFFFFF;
  padding: 60px 20px;
  text-align: center;
}

.page-terms-conditions__cta-container {
  max-width: 800px;
  margin: 0 auto;
}

.page-terms-conditions__cta-title {
  font-size: 2.2em;
  color: #FCBC45;
  margin-bottom: 20px;
}

.page-terms-conditions__cta-description {
  font-size: 1.1em;
  margin-bottom: 30px;
}

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

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

  .page-terms-conditions__hero-button,
  .page-terms-conditions__contact-button,
  .page-terms-conditions__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-terms-conditions__content-area,
  .page-terms-conditions__hero-section,
  .page-terms-conditions__cta-section {
    padding: 30px 15px;
  }

  .page-terms-conditions__hero-section {
    padding-top: var(--header-offset, 90px); /* Adjust for mobile header offset */
  }

  /* Ensure content images are responsive and not too small */
  .page-terms-conditions__content-area img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Min width for content images */
    min-height: 200px; /* Min height for content images */
  }
}

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

  .page-terms-conditions__hero-description {
    font-size: 0.95em;
  }

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

  .page-terms-conditions__paragraph {
    font-size: 0.9em;
  }
}