.page-terms-conditions {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for readability on dark background */
  background-color: #1A2E44; /* Main dark blue background */
  line-height: 1.6;
}

.page-terms-conditions__hero {
  background: linear-gradient(135deg, #1A2E44, #2A4460); /* Slightly lighter gradient for hero */
  padding: 80px 0;
  text-align: center;
  color: #FFD700; /* Gold for hero text */
  position: relative;
  overflow: hidden;
}

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

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

.page-terms-conditions__title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for main title */
  font-weight: bold;
}

.page-terms-conditions__subtitle {
  font-size: 1.2em;
  color: #C0C0C0; /* Lighter gray for subtitle */
  max-width: 700px;
  margin: 0 auto 30px;
}

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

.page-terms-conditions__section--alt-bg {
  background-color: #2A4460; /* Slightly lighter dark blue for alternating sections */
}

.page-terms-conditions__section-title {
  font-size: 2.2em;
  color: #FFD700; /* Gold for section titles */
  margin-bottom: 30px;
  text-align: left;
  border-bottom: 2px solid #FFD700;
  padding-bottom: 10px;
}

.page-terms-conditions p {
  margin-bottom: 15px;
  color: #E0E0E0; /* Light gray for body text */
  font-size: 1.05em;
}

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

.page-terms-conditions__list li {
  margin-bottom: 10px;
}

.page-terms-conditions__list strong {
  color: #FFD700;
}

.page-terms-conditions__link {
  color: #FFD700; /* Gold for links */
  text-decoration: underline;
}

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

.page-terms-conditions__highlight {
  color: #FFD700;
  font-weight: bold;
}

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

.page-terms-conditions__cta {
  background-color: #FFD700; /* Gold background for CTA */
  padding: 60px 0;
  text-align: center;
  color: #1A2E44; /* Dark blue text on gold background */
}

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

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

.page-terms-conditions__cta-button {
  display: inline-block;
  background-color: #1A2E44; /* Dark blue button */
  color: #FFD700; /* Gold text on button */
  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;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-terms-conditions__cta-button:hover {
  background-color: #0F1F30; /* Darker blue on hover */
  color: #FFFFFF; /* White text on hover */
}

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

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

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

  .page-terms-conditions__cta-title {
    font-size: 2em;
  }

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

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

  .page-terms-conditions__section {
    padding: 40px 0;
  }

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

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