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

.page-terms-conditions__hero-section {
  position: relative;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Ensure content clears fixed header */
  background-color: #3A1C71;
  color: #ffffff;
  text-align: center;
}

.page-terms-conditions__hero-container {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.page-terms-conditions__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 30px;
}

.page-terms-conditions__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

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

.page-terms-conditions__description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

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

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

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

.page-terms-conditions__section-title {
  font-size: 2em;
  color: #3A1C71; /* Main brand color */
  margin-bottom: 15px;
  border-left: 5px solid #D72638;
  padding-left: 15px;
}

.page-terms-conditions__text {
  font-size: 1em;
  margin-bottom: 15px;
  color: #555555;
}

.page-terms-conditions__link {
  color: #D72638;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

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

.page-terms-conditions__cta-button {
  display: inline-block;
  background-color: #D72638; /* Auxiliary color for primary CTA */
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin: 10px;
  border: none;
  cursor: pointer;
}

.page-terms-conditions__cta-button:hover {
  background-color: #b81f2f;
  transform: translateY(-3px);
}

.page-terms-conditions__cta-button--secondary {
  background-color: #3A1C71; /* Main color for secondary CTA */
}

.page-terms-conditions__cta-button--secondary:hover {
  background-color: #2a1551;
}

.page-terms-conditions__action-section {
  text-align: center;
  padding: 50px 20px;
  background-color: #f0f0f0;
  border-top: 1px solid #eee;
  border-radius: 0 0 8px 8px;
}

.page-terms-conditions__action-title {
  font-size: 2.2em;
  color: #3A1C71;
  margin-bottom: 15px;
}

.page-terms-conditions__action-description {
  font-size: 1.1em;
  color: #666666;
  margin-bottom: 30px;
}

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

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

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

  .page-terms-conditions__hero-container {
    padding: 20px 15px;
  }

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

  .page-terms-conditions__section {
    padding: 20px 0;
  }

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

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

  /* Ensure all content images in content area are responsive and not too small */
  .page-terms-conditions__content-area img {
    width: 100%;
    height: auto;
  }
}

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

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

  .page-terms-conditions__cta-button {
    display: block;
    width: calc(100% - 20px);
    margin-left: 10px;
    margin-right: 10px;
  }
}