.page-promotions-rules-terms {
  font-family: 'Arial', sans-serif;
  color: #2c3e50; /* Very dark blue-grey for main text */
  line-height: 1.6;
  background-color: #f8f8f8; /* Light grey background */
}

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

.page-promotions-rules-terms__hero {
  background: linear-gradient(135deg, #FFD700, #00BFFF);
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-promotions-rules-terms__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #ffffff; /* White text for contrast on gradient */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  font-weight: bold;
}

.page-promotions-rules-terms__hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  color: #ffffff;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions-rules-terms__hero-image {
  max-width: 90%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  margin-top: 30px;
}

.page-promotions-rules-terms__section {
  padding: 60px 0;
  border-bottom: 1px solid #eee;
}

.page-promotions-rules-terms__section:last-of-type {
  border-bottom: none;
}

.page-promotions-rules-terms__section-title {
  font-size: 2.5em;
  color: #00BFFF; /* Deep Sky Blue for titles */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-promotions-rules-terms__sub-title {
  font-size: 1.8em;
  color: #FFD700; /* Gold for sub-titles */
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 2px solid rgba(255, 215, 0, 0.3);
  padding-bottom: 10px;
}

.page-promotions-rules-terms p {
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #34495e; /* Darker blue-grey for paragraphs */
}

.page-promotions-rules-terms strong {
  color: #00BFFF;
}

.page-promotions-rules-terms__list {
  list-style: disc inside;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #34495e;
}

.page-promotions-rules-terms__list li {
  margin-bottom: 10px;
  font-size: 1.05em;
}

.page-promotions-rules-terms__image {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-promotions-rules-terms__button {
  display: inline-block;
  background-color: #FFD700; /* Gold button background */
  color: #2c3e50; /* Dark text for contrast */
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
  margin-top: 30px;
}

.page-promotions-rules-terms__button:hover {
  background-color: #e6c200; /* Darker gold on hover */
  transform: translateY(-3px);
}

.page-promotions-rules-terms__contact-cta {
  text-align: center;
  background-color: #eaf6ff; /* Light blue background for CTA */
  padding: 80px 0;
}

.page-promotions-rules-terms__contact-cta .page-promotions-rules-terms__section-title {
  color: #0086b3; /* Darker blue for contrast */
}

.page-promotions-rules-terms__final-note {
  text-align: center;
  padding: 40px 0;
  background-color: #f0f0f0;
  font-style: italic;
  font-size: 1.1em;
  color: #555;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-promotions-rules-terms__hero {
    padding: 60px 0;
  }

  .page-promotions-rules-terms__hero-title {
    font-size: 2.5em;
  }

  .page-promotions-rules-terms__hero-subtitle {
    font-size: 1.2em;
  }

  .page-promotions-rules-terms__section-title {
    font-size: 2em;
  }

  .page-promotions-rules-terms__sub-title {
    font-size: 1.5em;
  }

  .page-promotions-rules-terms p,
  .page-promotions-rules-terms__list li {
    font-size: 1em;
  }

  .page-promotions-rules-terms__button {
    padding: 12px 25px;
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-promotions-rules-terms__hero {
    padding: 40px 0;
  }

  .page-promotions-rules-terms__hero-title {
    font-size: 2em;
  }

  .page-promotions-rules-terms__hero-subtitle {
    font-size: 1em;
    margin-bottom: 20px;
  }

  .page-promotions-rules-terms__section-title {
    font-size: 1.8em;
  }

  .page-promotions-rules-terms__sub-title {
    font-size: 1.3em;
  }

  .page-promotions-rules-terms__list {
    margin-left: 10px;
  }

  .page-promotions-rules-terms__button {
    padding: 10px 20px;
    font-size: 1em;
  }
}