.page-terms-conditions {
  color: #333333; /* Dark text for light body background */
  line-height: 1.6;
}

.page-terms-conditions__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  color: #ffffff;
  text-align: center;
  padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
}

.page-terms-conditions__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.7); /* Darken image for text readability */
}

.page-terms-conditions__hero-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 400px; /* Minimum height for hero section */
}

.page-terms-conditions__hero-content {
  position: absolute;
  z-index: 1;
  max-width: 900px;
  padding: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-terms-conditions__hero-title {
  font-size: 3.2em;
  margin-bottom: 15px;
  color: #FFD700; /* Gold for prominence */
  font-weight: 700;
}

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

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

.page-terms-conditions__article {
  margin-bottom: 30px;
}

.page-terms-conditions__article-heading {
  font-size: 2em;
  color: #CC0000; /* Main brand color for headings */
  margin-top: 30px;
  margin-bottom: 15px;
  border-bottom: 2px solid #FFD700;
  padding-bottom: 8px;
}

.page-terms-conditions__article-paragraph {
  font-size: 1.05em;
  margin-bottom: 20px;
}

.page-terms-conditions__article-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px 0;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-terms-conditions__inline-link {
  color: #CC0000; /* Main brand color for inline links */
  text-decoration: underline;
  font-weight: 600;
}

.page-terms-conditions__inline-link:hover {
  color: #a00000;
  text-decoration: none;
}

.page-terms-conditions__cta-wrapper {
  text-align: center;
  margin-top: 50px;
  padding: 30px;
  background-color: #f9f9f9;
  border-radius: 8px;
  border: 1px solid #eee;
}

.page-terms-conditions__cta-text {
  font-size: 1.3em;
  color: #333333;
  margin-bottom: 25px;
  font-weight: 600;
}

.page-terms-conditions__cta-button {
  display: inline-block;
  background-color: #CC0000; /* Main brand color for CTA button */
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: 700;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 5px 15px rgba(204, 0, 0, 0.4);
}

.page-terms-conditions__cta-button:hover {
  background-color: #FFD700; /* Auxiliary color on hover */
  color: #333333; /* Dark text for gold background */
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.6);
}

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

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

  .page-terms-conditions__article-heading {
    font-size: 1.6em;
  }

  .page-terms-conditions__article-paragraph,
  .page-terms-conditions__cta-text {
    font-size: 0.95em;
  }

  .page-terms-conditions__article-image {
    max-width: 100%;
    height: auto;
  }

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

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