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

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

.page-terms-conditions__hero {
  background: linear-gradient(135deg, #1A2C42, #2A3E54);
  padding: 80px 0 40px;
  text-align: center;
  border-bottom: 2px solid #E0B147;
}

.page-terms-conditions__title {
  font-size: 3em;
  color: #E0B147; /* Accent color for title */
  margin-bottom: 20px;
  font-weight: bold;
}

.page-terms-conditions__intro {
  font-size: 1.2em;
  color: #cccccc;
  max-width: 800px;
  margin: 0 auto;
}

.page-terms-conditions__section {
  padding: 40px 0;
  border-bottom: 1px dashed #3A4C62;
}

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

.page-terms-conditions__heading {
  font-size: 2.2em;
  color: #E0B147; /* Accent color for headings */
  margin-bottom: 25px;
  font-weight: 600;
}

.page-terms-conditions__sub-heading {
  font-size: 1.6em;
  color: #E0B147; /* Accent color for sub-headings */
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 500;
}

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

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

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

.page-terms-conditions__link {
  color: #E0B147; /* Accent color for internal links */
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-terms-conditions__link:hover {
  color: #FFD700; /* Lighter accent on hover */
}

.page-terms-conditions__link--promo {
  color: #E0B147; /* Accent color for promotion links */
  font-weight: bold;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-terms-conditions__link--promo:hover {
  color: #FFD700; /* Lighter accent on hover */
}

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

.page-terms-conditions__cta-section {
  background-color: #2A3E54;
  padding: 60px 20px;
  text-align: center;
  margin-top: 40px;
  border-top: 2px solid #E0B147;
}

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

.page-terms-conditions__cta-text {
  font-size: 1.3em;
  color: #f0f0f0;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-terms-conditions__cta-button {
  display: inline-block;
  background-color: #E0B147; /* Accent color for CTA button */
  color: #1A2C42; /* Dark text for accent background */
  padding: 15px 30px;
  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 4px 10px rgba(0, 0, 0, 0.2);
}

.page-terms-conditions__cta-button:hover {
  background-color: #FFD700; /* Lighter accent on hover */
  transform: translateY(-3px);
}

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

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

  .page-terms-conditions__sub-heading {
    font-size: 1.4em;
  }

  .page-terms-conditions__paragraph, .page-terms-conditions__list-item, .page-terms-conditions__intro {
    font-size: 1em;
  }

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

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

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

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

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

  .page-terms-conditions__sub-heading {
    font-size: 1.2em;
  }

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

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