.page-promotions {
  --primary-color: #C61F1F;
  --secondary-color: #E53030;
  --card-bg: #2A1212;
  --background-color: #140C0C;
  --text-main-color: #FFF1E8;
  --border-color: #6A1E1E;
  --gold-color: #F3C54D;
  --deep-red-color: #7E0D0D;
  color: var(--text-main-color); /* Default text color for the page content */
  background-color: var(--background-color); /* Page background from custom colors */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

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

.page-promotions__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 60px;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  overflow: hidden;
}

.page-promotions__hero-image-wrapper {
  width: 100%;
  max-height: 700px; /* Limit height of hero image */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-promotions__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.7); /* Slightly darken image for text readability */
}

.page-promotions__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  max-width: 800px;
  width: 90%;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background for text */
  border-radius: 10px;
  box-sizing: border-box;
}

.page-promotions__main-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--text-main-color);
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-promotions__description {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--text-main-color);
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-promotions__btn-primary {
  background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%);
  color: #ffffff; /* White text for contrast */
  border: none;
}

.page-promotions__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-promotions__section {
  padding: 60px 0;
  border-bottom: 1px solid var(--border-color);
}

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

.page-promotions__section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--gold-color);
  text-align: center;
  margin-bottom: 40px;
  font-weight: 600;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.page-promotions__subsection-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--secondary-color);
  margin-top: 30px;
  margin-bottom: 20px;
  font-weight: 500;
}

.page-promotions__text-block {
  font-size: 1.1rem;
  color: var(--text-main-color);
  margin-bottom: 20px;
}

.page-promotions__text-block strong {
  color: var(--gold-color);
}

.page-promotions__list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-promotions__list-item {
  background-color: var(--card-bg);
  margin-bottom: 10px;
  padding: 15px 20px;
  border-radius: 8px;
  color: var(--text-main-color);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: flex-start;
}

.page-promotions__list-item::before {
  content: '★'; /* Star icon */
  color: var(--gold-color);
  margin-right: 10px;
  font-size: 1.2em;
  line-height: 1;
}

.page-promotions__ordered-list {
  list-style: decimal;
  padding-left: 25px;
  margin-bottom: 20px;
  color: var(--text-main-color);
}

.page-promotions__ordered-list .page-promotions__list-item {
  background-color: transparent;
  border: none;
  padding: 5px 0;
  margin-bottom: 5px;
}

.page-promotions__ordered-list .page-promotions__list-item::before {
  content: none;
}

.page-promotions__image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  margin: 40px auto;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  max-width: 800px;
}

.page-promotions__link {
  color: var(--gold-color);
  text-decoration: none;
  font-weight: 600;
}

.page-promotions__link:hover {
  text-decoration: underline;
}

.page-promotions__faq-item {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  color: var(--text-main-color);
}

.page-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.1rem;
  background-color: var(--deep-red-color); /* Darker background for question */
  color: var(--text-main-color);
  border-bottom: 1px solid var(--border-color);
}

.page-promotions__faq-question::-webkit-details-marker {
  display: none;
}

.page-promotions__faq-question .page-promotions__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-promotions__faq-item[open] .page-promotions__faq-toggle {
  transform: rotate(45deg);
}

.page-promotions__faq-answer {
  padding: 20px 25px;
  font-size: 1rem;
  color: var(--text-main-color);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-promotions__hero-content {
    padding: 15px;
  }

  .page-promotions__main-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
  }

  .page-promotions__description {
    font-size: clamp(0.9rem, 1.8vw, 1.1rem);
  }

  .page-promotions__section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  }
}

@media (max-width: 768px) {
  .page-promotions__hero-content {
    position: static;
    transform: none;
    width: 100%;
    padding: 30px 20px;
    background-color: var(--background-color); /* Full background on mobile */
    border-radius: 0;
  }

  .page-promotions__hero-image-wrapper {
    max-height: 300px;
  }

  .page-promotions__main-title {
    margin-bottom: 15px;
    font-size: 2rem !important; /* Fixed for mobile */
  }

  .page-promotions__description {
    margin-bottom: 20px;
    font-size: 1rem !important; /* Fixed for mobile */
  }

  .page-promotions__section {
    padding: 40px 0;
  }

  .page-promotions__section-title {
    font-size: 1.8rem !important; /* Fixed for mobile */
    margin-bottom: 30px;
  }

  .page-promotions__subsection-title {
    font-size: 1.3rem !important; /* Fixed for mobile */
  }

  .page-promotions__text-block, .page-promotions__list-item, .page-promotions__faq-answer {
    font-size: 0.95rem !important;
  }

  .page-promotions__cta-button, .page-promotions__btn-primary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 20px !important;
    font-size: 1rem !important;
  }

  .page-promotions__container {
    padding-left: 15px !important;
    padding-right: 15px !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-promotions img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-promotions__image {
    margin: 30px auto !important;
  }

  .page-promotions__faq-question {
    padding: 15px 20px;
    font-size: 1rem;
  }

  .page-promotions__faq-answer {
    padding: 15px 20px;
  }

  .page-promotions__hero-section {
    padding-top: 10px !important; /* Small top padding, body handles --header-offset */
  }
}