.page-terms-conditions {
  color: #ffffff; /* Light text for dark body background */
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

.page-terms-conditions__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, rgba(139, 0, 0, 0.8), rgba(255, 215, 0, 0.2)); /* Dark red to gold gradient overlay */
  border-bottom: 2px solid #FFD700;
}

.page-terms-conditions__hero-content {
  max-width: 900px;
  margin-bottom: 40px;
}

.page-terms-conditions__main-title {
  font-size: 3.5em;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

.page-terms-conditions__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #8B0000; /* Dark red text on gold 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;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-terms-conditions__cta-button:hover {
  background-color: #e6c200; /* Slightly darker gold on hover */
  transform: translateY(-3px);
}

.page-terms-conditions__hero-image {
  max-width: 100%;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
}

.page-terms-conditions__hero-image img {
  width: 100%;
  height: auto;
  display: block;
  min-width: 200px;
  min-height: 200px;
}

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

.page-terms-conditions__section {
  background-color: rgba(255, 255, 255, 0.08); /* Slightly transparent white for section background */
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  border-left: 5px solid #FFD700; /* Gold border accent */
}

.page-terms-conditions__section-title {
  font-size: 2.2em;
  color: #FFD700; /* Gold for section titles */
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255, 215, 0, 0.3);
  padding-bottom: 10px;
}

.page-terms-conditions__paragraph {
  font-size: 1.05em;
  line-height: 1.8;
  color: #f0f0f0;
  margin-bottom: 15px;
}

.page-terms-conditions__link {
  color: #FFD700; /* Gold for links */
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-terms-conditions__link:hover {
  color: #e6c200;
  text-decoration: underline;
}

.page-terms-conditions__image {
  width: 100%;
  height: auto;
  display: block;
  margin-top: 25px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  min-width: 200px;
  min-height: 200px;
}

.page-terms-conditions__call-to-action {
  text-align: center;
  background-color: #8B0000; /* Dark red background for CTA */
  border-left: 5px solid #FFD700;
}

.page-terms-conditions__call-to-action .page-terms-conditions__section-title {
  color: #FFD700;
  border-bottom: none;
}

.page-terms-conditions__cta-button--bottom {
  margin-top: 25px;
  background-color: #FFD700;
  color: #8B0000;
}

@media (max-width: 768px) {
  .page-terms-conditions__hero-section {
    padding: 40px 15px;
  }

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

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

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

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

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

  .page-terms-conditions__hero-image,
  .page-terms-conditions__image {
    max-width: 100%;
    height: auto;
  }

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

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

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

  .page-terms-conditions__hero-section {
    flex-direction: column;
  }

  .page-terms-conditions__hero-content {
    margin-bottom: 20px;
  }

  .page-terms-conditions__cta-button {
    width: 100%;
    box-sizing: border-box;
  }

  /* Ensure all content area images are responsive and do not cause overflow */
  .page-terms-conditions__hero-image img,
  .page-terms-conditions__image {
    max-width: 100%;
    height: auto;
  }
}