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

.page-terms-conditions__hero-section {
  background-color: #f8f9fa; /* Light background for hero */
  padding: 80px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.page-terms-conditions__hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.page-terms-conditions__hero-title {
  font-size: 2.8em;
  color: #007bff; /* Primary brand color */
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

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

.page-terms-conditions__cta-button {
  display: inline-block;
  background-color: #28a745; /* Secondary brand color */
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
  min-width: 200px; /* Ensure buttons are not too small */
}

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

.page-terms-conditions__hero-image {
  max-width: 1000px;
  width: 100%;
  margin-top: 40px;
}

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

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

.page-terms-conditions__section {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  padding: 30px;
  margin-bottom: 30px;
  border-left: 5px solid #007bff; /* Accent border */
}

.page-terms-conditions__section-title {
  font-size: 2em;
  color: #007bff; /* Primary brand color */
  margin-top: 0;
  margin-bottom: 20px;
  font-weight: bold;
}

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

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

.page-terms-conditions__list-item {
  margin-bottom: 10px;
  font-size: 0.95em;
}

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

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

.page-terms-conditions__section img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  margin-top: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  min-width: 200px; /* Enforce minimum image size */
  min-height: 200px; /* Enforce minimum image size */
}

.page-terms-conditions__call-to-action {
  background-color: #e9f7ee; /* Light green background */
  border-radius: 10px;
  padding: 40px;
  text-align: center;
  margin-top: 40px;
  border: 1px solid #28a745;
}

.page-terms-conditions__cta-heading {
  font-size: 2.2em;
  color: #007bff;
  margin-bottom: 15px;
}

.page-terms-conditions__cta-text {
  font-size: 1.1em;
  color: #333333;
  margin-bottom: 30px;
}

.page-terms-conditions__cta-button--secondary {
  background-color: #007bff; /* Primary brand color for secondary CTA */
}

.page-terms-conditions__cta-button--secondary:hover {
  background-color: #0056b3;
}

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

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

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

  .page-terms-conditions__cta-button {
    padding: 12px 25px;
    font-size: 1em;
    min-width: unset;
    width: 100%;
    max-width: 250px;
  }

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

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

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

  .page-terms-conditions__section img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Ensure mobile images are not too small */
    min-height: 200px; /* Ensure mobile images are not too small */
  }

  .page-terms-conditions__call-to-action {
    padding: 30px 20px;
  }

  .page-terms-conditions__cta-heading {
    font-size: 1.8em;
  }

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