:root {
  --primary-color: #C91F17;
  --secondary-color: #E53935;
  --button-gradient: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%);
  --card-bg: #D32F2F;
  --section-bg: #B71C1C;
  --text-main: #FFF5E1;
  --border-color: #F2B544;
  --glow-color: #FFCC66;
  --gold-color: #F4D34D;
  --deep-red: #7A0E0E;

  /* Default text colors based on assumed body background (light from shared.css) */
  --default-text-color: #333333;
  --default-light-text-color: #ffffff; /* For dark backgrounds */
}

.page-promotions {
  font-family: 'Arial', sans-serif;
  color: var(--default-text-color); /* Default text color for light backgrounds */
  line-height: 1.6;
  background-color: var(--section-bg); /* Apply the specified background color for the overall page */
}

.page-promotions__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  background: var(--deep-red); /* Using Deep Red for hero background */
  color: var(--default-light-text-color);
}

.page-promotions__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%; /* Ensures it takes full width in its context */
}

.page-promotions__hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-promotions__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.page-promotions__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-promotions__main-title {
  font-size: 3.2em;
  font-weight: bold;
  color: var(--gold-color); /* Gold color for main title */
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(255, 204, 102, 0.7); /* Soft glow */
}

.page-promotions__hero-description {
  font-size: 1.2em;
  color: var(--text-main); /* Main text color */
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--button-gradient); /* Button gradient */
  color: #333333; /* Dark text for light button */
  text-decoration: none;
  border-radius: 50px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  border: 2px solid var(--border-color); /* Border color */
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions__cta-button:hover {
  background: linear-gradient(180deg, #E6B800 0%, #FFD86A 100%); /* Reverse gradient on hover */
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-promotions__cta-button--secondary {
  background: var(--primary-color);
  color: var(--default-light-text-color);
  border-color: var(--primary-color);
}

.page-promotions__cta-button--secondary:hover {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
}

.page-promotions__section {
  padding: 80px 20px;
  margin-bottom: 0; /* No margin between sections */
  background-color: var(--section-bg); /* Default section background */
  color: var(--text-main);
}

.page-promotions__dark-section {
  background-color: var(--deep-red); /* Deeper red for contrast sections */
  color: var(--text-main);
}

.page-promotions__section-title {
  font-size: 2.5em;
  color: var(--gold-color);
  text-align: center;
  margin-bottom: 40px;
  text-shadow: 0 0 8px rgba(255, 204, 102, 0.5);
}

.page-promotions__section-title--light {
  color: var(--gold-color); /* For dark sections */
}

.page-promotions__section-text {
  font-size: 1.1em;
  max-width: 900px;
  margin: 0 auto 20px auto;
  text-align: center;
  color: var(--text-main);
}

.page-promotions__section-text--light {
  color: var(--text-main);
}

.page-promotions__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-promotions__image-content {
  width: 100%;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-promotions__promo-card {
  background-color: var(--card-bg); /* Card background */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  text-align: center;
  padding-bottom: 30px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border-color);
}

.page-promotions__promo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.page-promotions__card-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
  margin-bottom: 20px;
}

.page-promotions__card-title {
  font-size: 1.5em;
  color: var(--gold-color);
  margin-bottom: 15px;
  padding: 0 20px;
  text-shadow: 0 0 5px rgba(255, 204, 102, 0.3);
}

.page-promotions__card-text {
  font-size: 1em;
  color: var(--text-main);
  padding: 0 20px;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-promotions__card-button {
  display: inline-block;
  padding: 12px 30px;
  background: var(--button-gradient);
  color: #333333;
  text-decoration: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: bold;
  margin-top: auto; /* Push button to bottom */
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
}

.page-promotions__card-button:hover {
  background: linear-gradient(180deg, #E6B800 0%, #FFD86A 100%);
  transform: translateY(-2px);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.page-promotions__guide-list {
  list-style: none;
  padding: 0;
  max-width: 900px;
  margin: 50px auto 0 auto;
}

.page-promotions__guide-item {
  background-color: var(--card-bg);
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-color);
}

.page-promotions__guide-title {
  font-size: 1.8em;
  color: var(--gold-color);
  margin-bottom: 15px;
  text-shadow: 0 0 5px rgba(255, 204, 102, 0.3);
}

.page-promotions__guide-description {
  font-size: 1.1em;
  color: var(--text-main);
}

.page-promotions__guide-description a {
  color: var(--gold-color);
  text-decoration: underline;
}

.page-promotions__guide-description a:hover {
  color: var(--glow-color);
}

.page-promotions__cta-button--small {
  padding: 10px 25px;
  font-size: 16px;
  border-radius: 30px;
  margin-top: 30px;
}

.page-promotions__terms-list {
  list-style: disc;
  padding-left: 25px;
  max-width: 900px;
  margin: 50px auto 30px auto;
  color: var(--text-main);
  font-size: 1.1em;
}

.page-promotions__terms-item {
  margin-bottom: 10px;
}

.page-promotions__terms-item--light {
  color: var(--text-main);
}

/* FAQ styles */
.page-promotions__faq-list {
  max-width: 900px;
  margin: 50px auto;
}

details.page-promotions__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  background: var(--card-bg);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}
details.page-promotions__faq-item summary.page-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
  color: var(--gold-color);
  font-weight: bold;
}
details.page-promotions__faq-item summary.page-promotions__faq-question::-webkit-details-marker {
  display: none;
}
details.page-promotions__faq-item summary.page-promotions__faq-question:hover {
  background: var(--deep-red);
}
.page-promotions__faq-qtext {
  flex: 1;
  font-size: 1.2em;
  line-height: 1.5;
  text-align: left;
  color: var(--gold-color);
}
.page-promotions__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: var(--gold-color);
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
}
details.page-promotions__faq-item .page-promotions__faq-answer {
  padding: 0 20px 20px;
  background: var(--deep-red);
  border-radius: 0 0 5px 5px;
  color: var(--text-main);
}

.page-promotions__cta-final-section {
  text-align: center;
}

.page-promotions__button-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.page-promotions__copyright-section {
  padding: 30px 20px;
  text-align: center;
  background-color: var(--deep-red);
  color: var(--text-main);
  font-size: 0.9em;
  border-top: 1px solid var(--border-color);
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-promotions__main-title {
    font-size: 2.8em;
  }
  .page-promotions__section-title {
    font-size: 2.2em;
  }
  .page-promotions__hero-description,
  .page-promotions__section-text,
  .page-promotions__guide-description,
  .page-promotions__terms-item,
  .page-promotions__faq-qtext,
  .page-promotions__faq-answer p {
    font-size: 1em;
  }
}

@media (max-width: 768px) {
  .page-promotions__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-promotions__hero-image img {
    border-radius: 4px;
  }
  .page-promotions__main-title {
    font-size: 2em;
    margin-bottom: 15px;
  }
  .page-promotions__hero-description {
    font-size: 1em;
    margin-bottom: 20px;
  }
  .page-promotions__cta-button {
    padding: 12px 30px;
    font-size: 16px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    margin-left: auto;
    margin-right: auto;
  }
  .page-promotions__section {
    padding: 50px 15px;
  }
  .page-promotions__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-promotions__promo-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-promotions__card-image {
    height: 180px;
  }
  .page-promotions__card-title {
    font-size: 1.3em;
  }
  .page-promotions__guide-item {
    padding: 20px;
  }
  .page-promotions__guide-title {
    font-size: 1.5em;
  }
  .page-promotions__terms-list {
    margin: 30px auto;
  }
  details.page-promotions__faq-item summary.page-promotions__faq-question {
    padding: 15px;
  }
  .page-promotions__faq-qtext {
    font-size: 1em;
  }
  details.page-promotions__faq-item .page-promotions__faq-answer {
    padding: 0 15px 15px;
  }

  /* Image responsive rules */
  .page-promotions img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-promotions__container,
  .page-promotions__section,
  .page-promotions__promo-card,
  .page-promotions__guide-item,
  .page-promotions__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-promotions__button-group {
    flex-direction: column;
    gap: 15px;
  }
  .page-promotions__cta-button--small {
    max-width: 100% !important;
    width: 100% !important;
  }
}