.page-terms-conditions {
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
  color: #333333; /* Dark text for default light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-terms-conditions__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 400px;
  padding: 60px 20px;
  box-sizing: border-box;
}

.page-terms-conditions__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: brightness(0.7); /* Slightly dim the background image for text readability */
}

.page-terms-conditions__hero-container {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.4); /* Semi-transparent dark overlay for text */
  border-radius: 10px;
}

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

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

.page-terms-conditions__hero-button {
  display: inline-block;
  background-color: #B80000; /* Main brand color */
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-terms-conditions__hero-button:hover {
  background-color: #FFD700; /* Auxiliary color on hover */
  color: #B80000;
  transform: translateY(-3px);
}

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

.page-terms-conditions__article {
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  padding: 30px;
  border-left: 5px solid #B80000; /* Main color as accent */
}

.page-terms-conditions__section-title {
  color: #B80000; /* Main brand color */
  font-size: 2em;
  margin-bottom: 20px;
  border-bottom: 2px solid #FFD700; /* Auxiliary color for underline */
  padding-bottom: 10px;
}

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

.page-terms-conditions__image-wrapper {
  margin: 25px 0;
  text-align: center;
}

.page-terms-conditions__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  min-width: 200px; /* Enforce min size */
  min-height: 200px; /* Enforce min size */
}

.page-terms-conditions__action-button {
  display: inline-block;
  background-color: #FFD700; /* Auxiliary color for action buttons */
  color: #B80000; /* Main color for text */
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  margin-top: 15px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-terms-conditions__action-button:hover {
  background-color: #B80000;
  color: #ffffff;
}

.page-terms-conditions__cta-section {
  background-color: #B80000; /* Main brand color */
  color: #ffffff;
  padding: 60px 20px;
  text-align: center;
  margin-top: 40px;
}

.page-terms-conditions__cta-title {
  font-size: 2.5em;
  color: #FFD700; /* Auxiliary color */
  margin-bottom: 20px;
}

.page-terms-conditions__cta-description {
  font-size: 1.1em;
  max-width: 800px;
  margin: 0 auto 30px auto;
}

.page-terms-conditions__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Auxiliary color */
  color: #B80000; /* Main color */
  padding: 18px 40px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-terms-conditions__cta-button:hover {
  background-color: #ffffff;
  color: #B80000;
}

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

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

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

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

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

  .page-terms-conditions__image {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Enforce min size */
    min-height: 200px; /* Enforce min size */
  }

  .page-terms-conditions {
    max-width: 100%;
    overflow-x: hidden;
  }
}