:root {
  --primary-color: #C91F17; /* Main Red */
  --secondary-color: #E53935; /* Auxiliary Red */
  --button-gradient-start: #FFD86A; /* Button Gold Start */
  --button-gradient-end: #E6B800; /* Button Gold End */
  --card-bg: #D32F2F; /* Card Background Red */
  --main-bg: #B71C1C; /* Main Background Deep Red */
  --text-main: #FFF5E1; /* Main Text Off-White */
  --border-color: #F2B544; /* Border Gold */
  --glow-color: #FFCC66; /* Glow Gold */
  --gold-color: #F4D34D; /* Gold Accent */
  --deep-red: #7A0E0E; /* Deep Red Accent */

  /* Default text colors for contrast */
  --text-dark: #333333;
  --text-light: #ffffff;
}

.page-promotions {
  font-family: 'Arial', sans-serif;
  background-color: var(--main-bg); /* Use specified main background */
  color: var(--text-main); /* Use specified main text color for general content */
  line-height: 1.6;
  padding-bottom: 50px; /* Ensure space above footer */
}

.page-promotions__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-promotions__section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1); /* Light border for separation */
}

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

.page-promotions__section-title {
  font-size: 36px;
  font-weight: bold;
  color: var(--gold-color); /* Use gold for titles */
  text-align: center;
  margin-bottom: 40px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.page-promotions h1 {
  font-size: 42px;
  font-weight: 900;
  color: var(--gold-color);
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 3px 6px rgba(0,0,0,0.4);
}

.page-promotions h2 {
  font-size: 32px;
  font-weight: bold;
  color: var(--gold-color);
  margin-bottom: 25px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.page-promotions h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 15px;
}

.page-promotions p {
  font-size: 17px;
  color: var(--text-main);
  margin-bottom: 20px;
}

.page-promotions a {
  color: var(--border-color); /* Use border-color for links */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-promotions a:hover {
  color: var(--button-gradient-start);
  text-decoration: underline;
}

/* --- HERO Section --- */
.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 padding-top handles header offset */
  background: linear-gradient(180deg, var(--deep-red) 0%, var(--main-bg) 100%);
  overflow: hidden;
}

.page-promotions__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1; /* Ensure content is above any potential background effects */
}

.page-promotions__hero-image {
  width: 100%;
  margin-bottom: 30px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.page-promotions__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: cover;
  min-height: 200px; /* Minimum image size */
}

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

.page-promotions__hero-description {
  font-size: 19px;
  max-width: 800px;
  margin: 0 auto 30px;
  color: var(--text-main);
}

.page-promotions__cta-button {
  display: inline-block;
  padding: 18px 45px;
  background: linear-gradient(180deg, var(--button-gradient-start) 0%, var(--button-gradient-end) 100%);
  color: var(--deep-red); /* Dark text on gold button */
  text-decoration: none;
  border-radius: 8px;
  font-size: 20px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.4);
  border: none;
  cursor: pointer;
}

.page-promotions__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.6);
  opacity: 0.9;
}

.page-promotions__cta-button--small {
  padding: 12px 30px;
  font-size: 16px;
  margin-top: 30px;
}

/* Intro Section */
.page-promotions__intro-section p {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-size: 18px;
}

/* Promo Types Section */
.page-promotions__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

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

.page-promotions__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.5);
}

.page-promotions__promo-card img {
  width: 100%;
  height: 250px; /* Fixed height for card images */
  object-fit: cover;
  margin-bottom: 20px;
  min-width: 200px; /* Min image size */
  min-height: 200px; /* Min image size */
}

.page-promotions__card-title {
  color: var(--gold-color);
  font-size: 22px;
  margin: 0 20px 15px;
  line-height: 1.3;
}

.page-promotions__promo-card p {
  color: var(--text-main);
  font-size: 16px;
  margin: 0 20px 25px;
  flex-grow: 1;
}

.page-promotions__btn-secondary {
  display: inline-block;
  padding: 12px 30px;
  background: var(--primary-color);
  color: var(--text-light);
  text-decoration: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: bold;
  transition: all 0.3s ease;
  border: 2px solid var(--primary-color);
}

.page-promotions__btn-secondary:hover {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

/* Guide Section */
.page-promotions__guide-content {
  display: flex;
  gap: 40px;
  align-items: center;
}

.page-promotions__guide-steps {
  flex: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.page-promotions__guide-step {
  background-color: var(--card-bg);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  position: relative;
  border: 1px solid var(--border-color);
}

.page-promotions__step-number {
  position: absolute;
  top: -15px;
  left: 20px;
  background-color: var(--gold-color);
  color: var(--deep-red);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: bold;
  box-shadow: 0 3px 8px rgba(0,0,0,0.3);
}

.page-promotions__guide-step h3 {
  margin-top: 15px;
  color: var(--gold-color);
}

.page-promotions__guide-step p {
  font-size: 16px;
  color: var(--text-main);
}

.page-promotions__guide-image {
  flex: 1;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  min-width: 300px;
}

.page-promotions__guide-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  min-width: 200px; /* Min image size */
  min-height: 200px; /* Min image size */
}

.page-promotions__cta-bottom {
  text-align: center;
  margin-top: 60px;
}

/* Terms Section */
.page-promotions__terms-section p {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-size: 17px;
}

.page-promotions__terms-list {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 40px auto;
  background-color: var(--card-bg);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  border: 1px solid var(--border-color);
}

.page-promotions__terms-list li {
  margin-bottom: 15px;
  padding-left: 25px;
  position: relative;
  color: var(--text-main);
  font-size: 16px;
}

.page-promotions__terms-list li:last-child {
  margin-bottom: 0;
}

.page-promotions__terms-list li::before {
  content: '✓';
  color: var(--gold-color);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-promotions__terms-list strong {
  color: var(--gold-color);
}

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

details.page-promotions__faq-item {
  margin-bottom: 15px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  background-color: var(--card-bg); /* Use card background for FAQ items */
  box-shadow: 0 4px 15px 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: 20px 25px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
}

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-color: var(--deep-red); /* Slightly darker red on hover */
}

.page-promotions__faq-qtext {
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: var(--gold-color); /* Gold text for FAQ questions */
}

.page-promotions__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  color: var(--gold-color);
  flex-shrink: 0;
  margin-left: 15px;
  width: 30px;
  text-align: center;
}

details.page-promotions__faq-item .page-promotions__faq-answer {
  padding: 0 25px 25px;
  background-color: var(--deep-red); /* Deep red for answer background */
  border-radius: 0 0 12px 12px;
}

.page-promotions__faq-answer p {
  font-size: 16px;
  color: var(--text-main);
}

/* Latest News Section */
.page-promotions__latest-news p {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-size: 17px;
  margin-bottom: 30px;
}

/* --- Responsive Design --- */
@media (max-width: 1024px) {
  .page-promotions__hero-section {
    padding: 40px 15px;
  }
  .page-promotions h1 {
    font-size: 36px;
  }
  .page-promotions__hero-description {
    font-size: 17px;
  }
  .page-promotions__cta-button {
    padding: 15px 35px;
    font-size: 18px;
  }
  .page-promotions__section-title {
    font-size: 30px;
  }
  .page-promotions__guide-content {
    flex-direction: column;
  }
  .page-promotions__guide-steps {
    grid-template-columns: 1fr;
    flex: none;
    width: 100%;
  }
  .page-promotions__guide-image {
    flex: none;
    width: 100%;
    max-width: 600px; /* Limit image width on smaller screens */
    margin: 30px auto 0;
  }
}

@media (max-width: 768px) {
  .page-promotions {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-promotions__hero-section {
    padding-top: 10px !important; /* Ensure small top padding */
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-promotions h1 {
    font-size: 30px;
  }
  .page-promotions__hero-description {
    font-size: 16px;
    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;
  }
  .page-promotions__cta-button--small {
    max-width: fit-content !important; /* Allow small buttons to shrink */
    width: auto !important;
    padding: 10px 25px;
    font-size: 15px;
  }
  .page-promotions__section {
    padding: 40px 0;
  }
  .page-promotions__section-title {
    font-size: 26px;
    margin-bottom: 30px;
  }
  .page-promotions__promo-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .page-promotions__promo-card img {
    height: 200px;
  }
  .page-promotions__card-title {
    font-size: 20px;
  }
  .page-promotions__promo-card p {
    font-size: 15px;
  }
  .page-promotions__btn-secondary {
    padding: 10px 25px;
    font-size: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-promotions__guide-step {
    padding: 25px;
  }
  .page-promotions__guide-step h3 {
    font-size: 20px;
  }
  .page-promotions__guide-image img {
    min-height: 200px;
  }
  .page-promotions__terms-list {
    padding: 20px;
    margin: 30px auto;
  }
  .page-promotions__terms-list li {
    font-size: 15px;
    padding-left: 20px;
  }
  details.page-promotions__faq-item summary.page-promotions__faq-question {
    padding: 15px 20px;
  }
  .page-promotions__faq-qtext {
    font-size: 16px;
  }
  .page-promotions__faq-toggle {
    font-size: 24px;
    width: 25px;
  }
  details.page-promotions__faq-item .page-promotions__faq-answer {
    padding: 0 20px 20px;
  }

  /* Mobile image responsiveness */
  .page-promotions img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block;
  }
  .page-promotions__section,
  .page-promotions__card,
  .page-promotions__container,
  .page-promotions__promo-card,
  .page-promotions__guide-step,
  .page-promotions__terms-list,
  details.page-promotions__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-promotions__cta-buttons,
  .page-promotions__button-group,
  .page-promotions__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }
  .page-promotions__cta-buttons {
    display: flex;
    flex-direction: column;
  }
}

/* Ensure image minimum size */
.page-promotions img {
  min-width: 200px;
  min-height: 200px;
}