.page-terms-conditions {
  padding-top: var(--header-offset, 120px); /* Ensures content starts below fixed header */
  color: #333333; /* Dark text for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #FFFFFF; /* Explicitly set for clarity, though shared.css might handle body */
}

.page-terms-conditions__hero-section {
  position: relative;
  text-align: center;
  padding: 80px 20px 40px;
  overflow: hidden;
  background-color: #000000; /* Dark background for hero */
}

.page-terms-conditions__hero-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.page-terms-conditions__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.3;
  filter: brightness(0.6); /* Adjust brightness, not color hue */
  min-width: 200px;
  min-height: 200px;
}

.page-terms-conditions__main-title {
  font-size: 2.8em;
  color: #FFFFFF;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-terms-conditions__intro-text {
  font-size: 1.2em;
  color: #F0F0F0;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
}

.page-terms-conditions__register-button {
  display: inline-block;
  background-color: #FCBC45; /* Login color for primary CTA */
  color: #000000;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease;
  position: relative;
  z-index: 2;
  min-width: 200px;
  min-height: 50px;
}

.page-terms-conditions__register-button:hover {
  background-color: #e0a53c;
}

.page-terms-conditions__content-area {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #FFFFFF;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
}

.page-terms-conditions__section-title {
  font-size: 1.8em;
  color: #000000;
  margin-top: 30px;
  margin-bottom: 15px;
  border-bottom: 2px solid #FCBC45;
  padding-bottom: 5px;
}

.page-terms-conditions__paragraph {
  margin-bottom: 15px;
  color: #333333;
}

.page-terms-conditions__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #333333;
}

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

.page-terms-conditions__link-button {
  display: inline-block;
  background-color: #000000; /* Main color for secondary CTA */
  color: #FFFFFF;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  margin-top: 10px;
  margin-bottom: 20px;
  transition: background-color 0.3s ease;
  min-width: 200px;
  min-height: 40px;
}

.page-terms-conditions__link-button:hover {
  background-color: #333333;
}

.page-terms-conditions__content-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  margin: 20px auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  min-height: 200px;
}

.page-terms-conditions__cta-footer {
  text-align: center;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid #eee;
}

.page-terms-conditions__cta-text {
  font-size: 1.4em;
  color: #000000;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-terms-conditions__register-button--bottom {
  background-color: #FCBC45; /* Login color for primary CTA */
  color: #000000;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-terms-conditions__hero-section {
    padding: 60px 15px 30px;
  }

  .page-terms-conditions__main-title {
    font-size: 2em;
  }

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

  .page-terms-conditions__content-area {
    padding: 20px 15px;
  }

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

  .page-terms-conditions__register-button,
  .page-terms-conditions__link-button {
    width: 100%;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }

  .page-terms-conditions__hero-image,
  .page-terms-conditions__content-image {
    max-width: 100%;
    height: auto;
    min-width: 200px;
    min-height: 200px;
  }

  .page-terms-conditions__content-area img {
    max-width: 100%;
    height: auto;
  }
}