.page-terms-conditions {
  color: #ffffff; /* Light text for dark body background */
  padding-top: var(--header-offset, 120px);
  background-color: #1A1A2E; /* Main brand color for section backgrounds */
}

.page-terms-conditions__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 20px 40px;
  background: linear-gradient(135deg, #1A1A2E 0%, #0d0d1a 100%);
  position: relative;
  overflow: hidden;
}

.page-terms-conditions__hero-content {
  max-width: 900px;
  margin-bottom: 30px;
  z-index: 1;
}

.page-terms-conditions__hero-title {
  font-size: 3.5em;
  color: #E9B000;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(233, 176, 0, 0.5);
}

.page-terms-conditions__hero-description {
  font-size: 1.3em;
  color: #f0f0f0;
  margin-bottom: 30px;
  line-height: 1.6;
}

.page-terms-conditions__cta-button {
  display: inline-block;
  background-color: #E9B000;
  color: #1A1A2E;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(233, 176, 0, 0.4);
}

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

.page-terms-conditions__hero-image-wrapper {
  width: 100%;
  max-width: 1200px;
  margin-top: 40px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  z-index: 0;
}

.page-terms-conditions__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-terms-conditions__introduction,
.page-terms-conditions__section {
  max-width: 1000px;
  margin: 40px auto;
  padding: 30px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-terms-conditions__section-title {
  font-size: 2.2em;
  color: #E9B000;
  margin-bottom: 25px;
  border-bottom: 2px solid rgba(233, 176, 0, 0.4);
  padding-bottom: 10px;
}

.page-terms-conditions__item-title {
  font-size: 1.6em;
  color: #E9B000;
  margin-top: 25px;
  margin-bottom: 15px;
}

.page-terms-conditions__paragraph {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 15px;
  color: #f0f0f0;
}

.page-terms-conditions__list {
  list-style-type: disc;
  margin-left: 30px;
  margin-bottom: 20px;
  color: #f0f0f0;
}

.page-terms-conditions__list-item {
  font-size: 1.05em;
  line-height: 1.6;
  margin-bottom: 8px;
}

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

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

.page-terms-conditions__image {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}

.page-terms-conditions__cta-button--bottom {
  margin-top: 40px;
  margin-bottom: 20px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-terms-conditions__hero-title {
    font-size: 3em;
  }
  .page-terms-conditions__hero-description {
    font-size: 1.15em;
  }
  .page-terms-conditions__section-title {
    font-size: 2em;
  }
  .page-terms-conditions__item-title {
    font-size: 1.4em;
  }
}

@media (max-width: 768px) {
  .page-terms-conditions__hero-title {
    font-size: 2.5em;
  }
  .page-terms-conditions__hero-description {
    font-size: 1em;
  }
  .page-terms-conditions__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-terms-conditions__introduction,
  .page-terms-conditions__section {
    margin: 20px auto;
    padding: 20px;
  }
  .page-terms-conditions__section-title {
    font-size: 1.8em;
  }
  .page-terms-conditions__item-title {
    font-size: 1.3em;
  }
  .page-terms-conditions__paragraph,
  .page-terms-conditions__list-item {
    font-size: 0.95em;
  }
  .page-terms-conditions__hero-image,
  .page-terms-conditions__image {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-terms-conditions__hero-title {
    font-size: 2em;
  }
  .page-terms-conditions__hero-description {
    font-size: 0.9em;
  }
  .page-terms-conditions__cta-button {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-terms-conditions__section-title {
    font-size: 1.5em;
  }
  .page-terms-conditions__item-title {
    font-size: 1.1em;
  }
  .page-terms-conditions__list {
    margin-left: 20px;
  }
}