/* style/terms-conditions.css */
.page-terms-conditions {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light text for dark background */
  background-color: #1A202C; /* Main dark background */
  line-height: 1.6;
}

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

.page-terms-conditions__hero {
  background: linear-gradient(135deg, #1A202C 0%, #3a4a6e 100%); /* Dark gradient for hero */
  padding: 80px 0 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-terms-conditions__hero-image-wrapper {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1200px;
  height: auto;
  opacity: 0.15;
  z-index: 0;
}

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

.page-terms-conditions__title {
  font-size: 3.5em;
  color: #E0B400; /* Accent color for main title */
  margin-bottom: 15px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 1;
}

.page-terms-conditions__subtitle {
  font-size: 1.2em;
  color: #CCCCCC;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.page-terms-conditions__section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(224, 180, 0, 0.1);
  position: relative;
}

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

.page-terms-conditions__section--alt-bg {
  background-color: #2A303C;
}

.page-terms-conditions__heading {
  font-size: 2.2em;
  color: #E0B400; /* Accent color for section headings */
  margin-bottom: 25px;
  font-weight: 600;
  border-left: 5px solid #E0B400;
  padding-left: 15px;
}

.page-terms-conditions p {
  margin-bottom: 15px;
  color: #E0E0E0;
}

.page-terms-conditions strong {
  color: #E0B400;
}

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

.page-terms-conditions__image--right {
  float: right;
  margin-left: 30px;
  max-width: 400px;
}

.page-terms-conditions__cta-section {
  background-color: #E0B400; /* Accent background for CTA */
  color: #1A202C; /* Dark text for light background */
  padding: 80px 0;
  text-align: center;
}

.page-terms-conditions__cta-heading {
  font-size: 2.5em;
  color: #1A202C;
  margin-bottom: 20px;
}

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

.page-terms-conditions__cta-button {
  display: inline-block;
  background-color: #1A202C; /* Dark button on accent background */
  color: #E0B400;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease;
  margin: 10px;
}

.page-terms-conditions__cta-button:hover {
  background-color: #3A404C;
  color: #FFFFFF;
}

.page-terms-conditions__cta-link {
  color: #1A202C;
  font-weight: bold;
  text-decoration: underline;
}

.page-terms-conditions__cta-link:hover {
  color: #555555;
}

.page-terms-conditions__contact-section {
  padding: 60px 0;
  text-align: center;
}

.page-terms-conditions__contact-button {
  display: inline-block;
  background-color: #E0B400;
  color: #1A202C;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 20px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-terms-conditions__contact-button:hover {
  background-color: #FFD700;
  color: #000000;
}

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

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

  .page-terms-conditions__image--right {
    float: none;
    margin: 30px auto;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .page-terms-conditions__title {
    font-size: 2em;
  }

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

  .page-terms-conditions__heading {
    font-size: 1.5em;
    padding-left: 10px;
  }

  .page-terms-conditions__cta-button {
    padding: 12px 20px;
    font-size: 1em;
  }
}