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

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

.page-promotions-terms-conditions__hero {
  background: linear-gradient(135deg, #0A2239 0%, #1a3a5a 100%); /* Dark blue gradient */
  color: #FFD700; /* Gold for hero text */
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-promotions-terms-conditions__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFD700; /* Gold for main title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions-terms-conditions__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #E0E0E0;
}

.page-promotions-terms-conditions__hero-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #0A2239; /* Dark blue text on gold */
  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(0, 0, 0, 0.2);
}

.page-promotions-terms-conditions__hero-button:hover {
  background-color: #e6c200; /* Slightly darker gold on hover */
  transform: translateY(-3px);
}

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

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

.page-promotions-terms-conditions__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for section titles */
  margin-bottom: 30px;
  text-align: center;
  font-weight: bold;
  padding-bottom: 10px;
  position: relative;
}

.page-promotions-terms-conditions__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-promotions-terms-conditions__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #B0B0B0;
}

.page-promotions-terms-conditions__sub-section-title {
  font-size: 1.8em;
  color: #FFD700; /* Gold for sub-section titles */
  margin-top: 40px;
  margin-bottom: 25px;
  font-weight: bold;
  border-left: 5px solid #FFD700;
  padding-left: 15px;
}

.page-promotions-terms-conditions__paragraph {
  font-size: 1.05em;
  margin-bottom: 20px;
  color: #E0E0E0;
}

.page-promotions-terms-conditions__list {
  list-style-type: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-promotions-terms-conditions__list li {
  background-color: #1a3a5a; /* Slightly lighter blue for list items */
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease;
  color: #E0E0E0;
}

.page-promotions-terms-conditions__list li:hover {
  background-color: #2a4a6a;
}

.page-promotions-terms-conditions__list-item-title {
  color: #FFD700; /* Gold for list item titles */
  font-size: 1.2em;
  display: block;
  margin-bottom: 8px;
}

.page-promotions-terms-conditions__image-wrapper {
  text-align: center;
  margin: 40px 0;
}

.page-promotions-terms-conditions__image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  object-fit: cover;
}

.page-promotions-terms-conditions__call-to-action {
  text-align: center;
  padding: 50px;
  background-color: #1a3a5a; /* Lighter blue for CTA background */
  border-radius: 15px;
  margin-top: 60px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-promotions-terms-conditions__cta-text {
  font-size: 1.8em;
  color: #FFD700; /* Gold for CTA text */
  margin-bottom: 30px;
  font-weight: bold;
}

.page-promotions-terms-conditions__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #0A2239; /* Dark blue text */
  padding: 15px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin: 0 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

.page-promotions-terms-conditions__cta-button--secondary {
  background-color: transparent;
  border: 2px solid #FFD700; /* Gold border */
  color: #FFD700; /* Gold text */
}

.page-promotions-terms-conditions__cta-button--secondary:hover {
  background-color: #FFD700;
  color: #0A2239;
}

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

  .page-promotions-terms-conditions__hero-subtitle {
    font-size: 1.1em;
  }

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

  .page-promotions-terms-conditions__sub-section-title {
    font-size: 1.5em;
  }

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

  .page-promotions-terms-conditions__cta-button {
    margin: 10px 0;
    width: 90%;
    display: block;
  }
}

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

  .page-promotions-terms-conditions__hero-subtitle {
    font-size: 1em;
  }

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

  .page-promotions-terms-conditions__sub-section-title {
    font-size: 1.3em;
  }

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