.page-promotions {
  color: #ffffff; /* Body background is dark, so text is light */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  background-color: #121212;
}

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

.page-promotions__section-title {
  font-size: 2.5rem;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-promotions__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: #FFD700;
}

.page-promotions__text-block {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 20px;
  text-align: center;
}

.page-promotions__text-block a {
  color: #FFD700;
  text-decoration: none;
}

.page-promotions__text-block a:hover {
  text-decoration: underline;
}

/* Hero Section */
.page-promotions__hero-section {
  position: relative;
  width: 100%;
  height: 70vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: var(--header-offset, 120px);
  overflow: hidden;
}

.page-promotions__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.page-promotions__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2;
}

.page-promotions__hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  padding: 20px;
}

.page-promotions__hero-title {
  font-size: 3.8rem;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-promotions__hero-description {
  font-size: 1.5rem;
  color: #ffffff;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions__hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-promotions__btn-primary,
.page-promotions__btn-secondary {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  box-sizing: border-box;
}

.page-promotions__btn-primary {
  background-color: #FFD700;
  color: #1A202C;
}

.page-promotions__btn-primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-promotions__btn-secondary {
  background-color: transparent;
  color: #FFD700;
  border-color: #FFD700;
}

.page-promotions__btn-secondary:hover {
  background-color: #FFD700;
  color: #1A202C;
  transform: translateY(-3px);
}

/* Overview Section */
.page-promotions__overview-section {
  padding: 80px 0;
  background-color: #1A202C;
}

.page-promotions__overview-section .page-promotions__text-block {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Categories Section */
.page-promotions__categories-section {
  padding: 80px 0;
  background-color: #121212;
}

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

.page-promotions__category-card {
  background-color: #1A202C;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  padding-bottom: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-promotions__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 20px;
}

.page-promotions__card-title {
  font-size: 1.8rem;
  color: #FFD700;
  margin-bottom: 15px;
  padding: 0 15px;
}

.page-promotions__card-title a {
  color: #FFD700;
  text-decoration: none;
}

.page-promotions__card-title a:hover {
  text-decoration: underline;
}

.page-promotions__card-description {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  padding: 0 20px;
  margin-bottom: 25px;
}

.page-promotions__card-link {
  display: inline-block;
  background-color: #FFD700;
  color: #1A202C;
  padding: 10px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-promotions__card-link:hover {
  background-color: #e6c200;
}

/* Specific Promotions Section */
.page-promotions__specific-promotions-section {
  padding: 80px 0;
  background-color: #1A202C;
}

.page-promotions__promo-item {
  display: flex;
  align-items: center;
  background-color: #121212;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 50px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions__promo-item--reverse {
  flex-direction: row-reverse;
}

.page-promotions__promo-image {
  width: 50%;
  height: auto;
  object-fit: cover;
}

.page-promotions__promo-content {
  width: 50%;
  padding: 40px;
}

.page-promotions__promo-title {
  font-size: 2rem;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-promotions__promo-title a {
  color: #FFD700;
  text-decoration: none;
}

.page-promotions__promo-title a:hover {
  text-decoration: underline;
}

.page-promotions__promo-description {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 30px;
}

/* Terms Section & Benefits Section (Dark Background) */
.page-promotions__dark-section {
  background-color: #1A202C;
  color: #ffffff;
  padding: 80px 0;
}

.page-promotions__dark-section .page-promotions__section-title {
  color: #FFD700;
}

.page-promotions__dark-section .page-promotions__section-title::after {
  background-color: #FFD700;
}

.page-promotions__dark-section .page-promotions__text-block {
  color: rgba(255, 255, 255, 0.85);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions__terms-list,
.page-promotions__benefits-list {
  list-style: none;
  padding: 0;
  max-width: 900px;
  margin: 40px auto;
}

.page-promotions__terms-list li,
.page-promotions__benefits-list li {
  background-color: rgba(255, 255, 255, 0.08);
  margin-bottom: 15px;
  padding: 20px;
  border-left: 5px solid #FFD700;
  border-radius: 5px;
  font-size: 1.1rem;
  color: #ffffff;
}

.page-promotions__terms-list li strong,
.page-promotions__benefits-list li strong {
  color: #FFD700;
}

/* Guide Section */
.page-promotions__guide-section {
  padding: 80px 0;
  background-color: #121212;
}

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

.page-promotions__guide-list li {
  background-color: #1A202C;
  margin-bottom: 20px;
  padding: 25px;
  border-left: 5px solid #FFD700;
  border-radius: 5px;
  font-size: 1.1rem;
  color: #ffffff;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions__guide-list li strong {
  color: #FFD700;
  font-size: 1.2rem;
  display: block;
  margin-bottom: 10px;
}

/* FAQ Section */
.page-promotions__faq-section {
  padding: 80px 0;
  background-color: #1A202C;
}

.page-promotions__faq-list {
  max-width: 900px;
  margin: 40px auto;
}

.page-promotions__faq-item {
  background-color: #121212;
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  background-color: #1A202C;
  cursor: pointer;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-promotions__faq-question h3 {
  margin: 0;
  font-size: 1.3rem;
  color: #FFD700;
}

.page-promotions__faq-toggle {
  font-size: 1.8rem;
  color: #FFD700;
  font-weight: bold;
  transition: transform 0.3s ease;
}

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

.page-promotions__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.page-promotions__faq-item.active .page-promotions__faq-answer {
  max-height: 1000px !important; /* Ensure it expands sufficiently */
  padding: 15px 25px;
}

.page-promotions__faq-answer p {
  margin: 0;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
}

/* CTA Section */
.page-promotions__cta-section {
  padding: 80px 0;
  text-align: center;
}

.page-promotions__cta-section .page-promotions__text-block {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

/* Global image responsiveness */
.page-promotions img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-promotions__hero-title {
    font-size: 3rem;
  }
  .page-promotions__hero-description {
    font-size: 1.3rem;
  }
  .page-promotions__section-title {
    font-size: 2rem;
  }
  .page-promotions__promo-item {
    flex-direction: column;
  }
  .page-promotions__promo-item--reverse {
    flex-direction: column;
  }
  .page-promotions__promo-image,
  .page-promotions__promo-content {
    width: 100%;
  }
  .page-promotions__promo-content {
    padding: 30px;
  }
  .page-promotions__card-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .page-promotions {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-promotions__hero-section {
    height: auto;
    min-height: 400px;
    padding-top: var(--header-offset, 120px) !important; /* Ensure header offset on mobile */
  }
  .page-promotions__hero-title {
    font-size: 2.5rem;
  }
  .page-promotions__hero-description {
    font-size: 1.1rem;
  }
  .page-promotions__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-promotions__btn-primary,
  .page-promotions__btn-secondary {
    width: 100%;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-promotions__section-title {
    font-size: 1.8rem;
  }
  .page-promotions__text-block {
    font-size: 1rem;
  }
  .page-promotions__category-grid {
    grid-template-columns: 1fr;
  }
  .page-promotions__promo-content {
    padding: 20px;
  }
  .page-promotions__promo-title {
    font-size: 1.5rem;
  }
  .page-promotions__promo-description {
    font-size: 1rem;
  }
  .page-promotions__terms-list li,
  .page-promotions__benefits-list li,
  .page-promotions__guide-list li {
    font-size: 1rem;
    padding: 15px;
  }
  .page-promotions__guide-list li strong {
    font-size: 1.1rem;
  }
  .page-promotions__faq-question h3 {
    font-size: 1.1rem;
  }
  .page-promotions__faq-toggle {
    font-size: 1.5rem;
  }
  /* Mobile image specific rules */
  .page-promotions img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-promotions__section,
  .page-promotions__card,
  .page-promotions__container,
  .page-promotions__promo-item,
  .page-promotions__cta-buttons {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden !important; /* Prevent horizontal scroll */
  }
  .page-promotions__hero-buttons,
  .page-promotions__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-promotions__cta-buttons a {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .page-promotions__hero-title {
    font-size: 2rem;
  }
  .page-promotions__hero-description {
    font-size: 0.95rem;
  }
  .page-promotions__section-title {
    font-size: 1.5rem;
  }
  .page-promotions__btn-primary,
  .page-promotions__btn-secondary {
    padding: 12px 25px;
    font-size: 1rem;
  }
  .page-promotions__promo-content {
    padding: 15px;
  }
  .page-promotions__faq-question h3 {
    font-size: 1rem;
  }
  .page-promotions__faq-toggle {
    font-size: 1.3rem;
  }
}