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

.page-terms-conditions__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 60px 20px;
  min-height: 450px;
  overflow: hidden;
}

.page-terms-conditions__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.page-terms-conditions__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  background-color: rgba(0, 0, 0, 0.7); /* Semi-transparent dark background for readability */
  padding: 30px;
  border-radius: 10px;
  color: #FFFFFF;
}

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

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

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

.page-terms-conditions__hero-button:hover {
  background-color: #e0a53b;
  transform: translateY(-2px);
}

.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__section {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

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

.page-terms-conditions__section-title {
  font-size: 2em;
  color: #000000; /* Main color */
  margin-bottom: 15px;
  border-left: 5px solid #FCBC45; /* Accent color */
  padding-left: 10px;
}

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

.page-terms-conditions__paragraph a {
  color: #FCBC45;
  text-decoration: none;
}

.page-terms-conditions__paragraph a:hover {
  text-decoration: underline;
}

.page-terms-conditions__section-image {
  width: 100%;
  height: auto;
  max-width: 800px; /* Ensure content images are large enough */
  display: block;
  margin: 20px auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-terms-conditions__call-to-action {
  text-align: center;
  background-color: #000000; /* Main color as background */
  color: #FFFFFF;
  padding: 50px 20px;
  border-radius: 8px;
  margin-top: 40px;
  position: relative;
  overflow: hidden;
}

.page-terms-conditions__call-to-action-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2; /* Subtle background image */
  z-index: 0;
}

.page-terms-conditions__call-to-action-title {
  font-size: 2.5em;
  color: #FCBC45; /* Accent color */
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.page-terms-conditions__call-to-action-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.page-terms-conditions__call-to-action-button {
  display: inline-block;
  background-color: #FCBC45; /* Login button color */
  color: #000000;
  padding: 18px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  position: relative;
  z-index: 1;
}

.page-terms-conditions__call-to-action-button:hover {
  background-color: #e0a53b;
  transform: scale(1.05);
}

@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.5em;
  }

  .page-terms-conditions__call-to-action-title {
    font-size: 2em;
  }

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

  .page-terms-conditions__section-image,
  .page-terms-conditions__call-to-action-image {
    max-width: 100%;
    width: 100%;
    height: auto;
  }

  .page-terms-conditions__content-area img {
    max-width: 100%;
    height: auto;
  }

  /* Ensure no horizontal scroll */
  .page-terms-conditions {
    overflow-x: hidden;
  }
}