.page-terms-conditions {
  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;
  padding-top: var(--header-offset, 120px); /* Ensures content is below fixed header */
  padding-bottom: 60px;
  overflow: hidden;
  background: linear-gradient(135deg, #FFD700, #8B0000);
  color: #ffffff;
  text-align: center;
}

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

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

.page-terms-conditions__hero-content {
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
}

.page-terms-conditions__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #ffffff;
  font-weight: bold;
  letter-spacing: 1px;
}

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

.page-terms-conditions__hero-button {
  display: inline-block;
  background-color: #FFD700; /* Main brand color */
  color: #8B0000; /* Auxiliary brand color for text */
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

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

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

.page-terms-conditions__section-wrapper {
  background-color: #ffffff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.page-terms-conditions__section-title {
  font-size: 2.2em;
  color: #8B0000; /* Auxiliary brand color */
  margin-top: 40px;
  margin-bottom: 25px;
  border-bottom: 3px solid #FFD700; /* Main brand color */
  padding-bottom: 10px;
  font-weight: bold;
}

.page-terms-conditions__paragraph {
  font-size: 1.05em;
  margin-bottom: 20px;
  line-height: 1.8;
  color: #333333;
}

.page-terms-conditions__contact-info {
  margin-top: 30px;
  padding: 20px;
  background-color: #fffaf0; /* Light gold background */
  border-left: 5px solid #FFD700;
  border-radius: 5px;
}

.page-terms-conditions__contact-list {
  list-style: none;
  padding-left: 0;
  margin-top: 15px;
}

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

.page-terms-conditions__contact-item strong {
  color: #8B0000;
}

.page-terms-conditions__contact-item a {
  color: #007bff; /* Standard link blue for readability */
  text-decoration: none;
}

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

.page-terms-conditions__cta-wrapper {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(45deg, #8B0000, #FFD700);
  padding: 40px;
  border-radius: 15px;
  color: #ffffff;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-terms-conditions__cta-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  object-fit: cover;
}

.page-terms-conditions__cta-title {
  font-size: 2.5em;
  margin-bottom: 15px;
  font-weight: bold;
  color: #ffffff;
}

.page-terms-conditions__cta-text {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 700px;
}

.page-terms-conditions__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Main brand color */
  color: #8B0000; /* Auxiliary brand color for text */
  padding: 18px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .page-terms-conditions__hero-title {
    font-size: 2.8em;
  }
  .page-terms-conditions__section-title {
    font-size: 2em;
  }
  .page-terms-conditions__cta-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-terms-conditions__hero-section {
    padding-top: var(--header-offset, 120px); /* Mobile header offset */
    padding-bottom: 40px;
  }
  .page-terms-conditions__hero-title {
    font-size: 2.2em;
  }
  .page-terms-conditions__hero-description {
    font-size: 1em;
  }
  .page-terms-conditions__hero-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-terms-conditions__content-area {
    padding: 30px 15px;
  }
  .page-terms-conditions__section-wrapper {
    padding: 25px;
  }
  .page-terms-conditions__section-title {
    font-size: 1.8em;
    margin-top: 30px;
    margin-bottom: 20px;
  }
  .page-terms-conditions__paragraph {
    font-size: 0.95em;
  }
  .page-terms-conditions__cta-wrapper {
    padding: 30px;
  }
  .page-terms-conditions__cta-image {
    margin-bottom: 20px;
  }
  .page-terms-conditions__cta-title {
    font-size: 1.8em;
  }
  .page-terms-conditions__cta-text {
    font-size: 1em;
  }
  .page-terms-conditions__cta-button {
    padding: 15px 30px;
    font-size: 1.1em;
  }
  /* Ensure content images do not overflow on mobile */
  .page-terms-conditions img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-terms-conditions__hero-title {
    font-size: 1.8em;
  }
  .page-terms-conditions__hero-description {
    font-size: 0.9em;
  }
  .page-terms-conditions__section-title {
    font-size: 1.5em;
  }
  .page-terms-conditions__cta-title {
    font-size: 1.6em;
  }
  .page-terms-conditions__cta-button {
    font-size: 1em;
    padding: 10px 20px;
  }
  .page-terms-conditions__hero-image {
    border-radius: 10px;
  }
  .page-terms-conditions__cta-image {
    border-radius: 8px;
  }
}