:root {
  --primary-color: #FFD700; /* Gold */
  --secondary-color: #8B0000; /* Dark Red */
  --text-color-dark-bg: #ffffff;
  --text-color-light-bg: #333333;
  --background-dark: #000;
  --card-background-dark-mode: rgba(255, 255, 255, 0.08);
  --border-color-dark-mode: rgba(255, 255, 255, 0.15);
}

.page-promotions {
  background-color: var(--background-dark);
  color: var(--text-color-dark-bg);
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  padding-top: 120px; /* Desktop: Ensure content is not hidden by fixed header */
}

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

.page-promotions__hero-section {
  text-align: center;
  padding: 60px 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.9), rgba(139,0,0,0.7));
  border-bottom: 2px solid var(--primary-color);
}

.page-promotions__main-title {
  font-size: 3.2em;
  color: var(--primary-color);
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
  font-weight: bold;
  line-height: 1.2;
}

.page-promotions__description {
  font-size: 1.2em;
  color: var(--text-color-dark-bg);
  max-width: 800px;
  margin: 0 auto 40px auto;
}

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

.page-promotions__cta-button {
  display: inline-block;
  padding: 15px 40px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: none;
  cursor: pointer;
  max-width: 100%; /* Ensure responsiveness */
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-promotions__cta-button--primary {
  background: var(--primary-color);
  color: #000000; /* Black text for gold button */
}

.page-promotions__cta-button--primary:hover {
  background: darken(var(--primary-color), 10%); /* This won't work in pure CSS, need to define a darker gold */
  background: #e6c200; /* Example darker gold */
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-promotions__cta-button--secondary {
  background: var(--secondary-color);
  color: var(--text-color-dark-bg);
  border: 1px solid var(--primary-color);
}

.page-promotions__cta-button--secondary:hover {
  background: darken(var(--secondary-color), 10%); /* This won't work in pure CSS, need to define a darker red */
  background: #7a0000; /* Example darker red */
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-promotions__section-title {
  font-size: 2.5em;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 30px;
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.4);
  font-weight: bold;
}

.page-promotions__section-description {
  font-size: 1.1em;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
}

.page-promotions__featured-promotions-section {
  padding: 80px 0;
}

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

.page-promotions__promo-card {
  background: var(--card-background-dark-mode);
  border: 1px solid var(--border-color-dark-mode);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-promotions__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.page-promotions__promo-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-promotions__promo-card-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-promotions__promo-card-title {
  font-size: 1.5em;
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promotions__promo-card-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-promotions__promo-card-title a:hover {
  color: var(--secondary-color);
}

.page-promotions__promo-card-text {
  font-size: 0.95em;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 20px;
}

.page-promotions__promo-card-button {
  display: block;
  width: 100%;
  padding: 12px 20px;
  background: var(--secondary-color);
  color: var(--text-color-dark-bg);
  text-align: center;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 1px solid var(--primary-color);
}

.page-promotions__promo-card-button:hover {
  background: var(--primary-color);
  color: #000000; /* Black text for gold button */
  transform: translateY(-2px);
}

.page-promotions__why-choose-section {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(139,0,0,0.7), rgba(0,0,0,0.9));
  border-top: 2px solid var(--primary-color);
  border-bottom: 2px solid var(--primary-color);
}

.page-promotions__benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-promotions__benefit-item {
  background: var(--card-background-dark-mode);
  border: 1px solid var(--border-color-dark-mode);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions__benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-promotions__benefit-title {
  font-size: 1.8em;
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promotions__benefit-text {
  font-size: 1em;
  color: rgba(255, 255, 255, 0.75);
}

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

.page-promotions__guide-section {
  padding: 80px 0;
}

.page-promotions__guide-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
}

.page-promotions__guide-item {
  background: var(--card-background-dark-mode);
  border: 1px solid var(--border-color-dark-mode);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.page-promotions__guide-title {
  font-size: 1.6em;
  color: var(--primary-color);
  margin-bottom: 10px;
  font-weight: bold;
}

.page-promotions__guide-text {
  font-size: 1em;
  color: rgba(255, 255, 255, 0.75);
}

.page-promotions__faq-section {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.9), rgba(139,0,0,0.7));
  border-top: 2px solid var(--primary-color);
}

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

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

.page-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: var(--card-background-dark-mode);
  border: 1px solid var(--border-color-dark-mode);
  border-radius: 8px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-promotions__faq-question:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--primary-color);
}

.page-promotions__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 1.1em;
  font-weight: 600;
  line-height: 1.5;
  color: var(--primary-color);
  pointer-events: none;
}

.page-promotions__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  color: var(--primary-color);
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}

.page-promotions__faq-item.active .page-promotions__faq-toggle {
  color: var(--secondary-color);
  transform: rotate(45deg); /* Plus to X */
}

.page-promotions__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  padding: 0 25px;
  opacity: 0;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.75);
}

.page-promotions__faq-item.active .page-promotions__faq-answer {
  max-height: 2000px !important; /* Sufficiently large */
  padding: 20px 25px !important;
  opacity: 1;
  border-radius: 0 0 8px 8px;
}

.page-promotions__brand-section {
  padding: 80px 0;
  background: var(--background-dark);
}

.page-promotions__brand-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-promotions__brand-item {
  background: var(--card-background-dark-mode);
  border: 1px solid var(--border-color-dark-mode);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions__brand-item-title {
  font-size: 1.8em;
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promotions__brand-item-text {
  font-size: 1em;
  color: rgba(255, 255, 255, 0.75);
}

.page-promotions__blog-section {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(139,0,0,0.7), rgba(0,0,0,0.9));
  border-top: 2px solid var(--primary-color);
}

.page-promotions__blog-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-promotions__blog-item {
  background: var(--card-background-dark-mode);
  border: 1px solid var(--border-color-dark-mode);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions__blog-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.page-promotions__blog-link {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
}

.page-promotions__blog-item-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.page-promotions__blog-item-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-promotions__blog-item-title {
  font-size: 1.3em;
  color: var(--primary-color);
  margin-bottom: 10px;
  font-weight: bold;
  line-height: 1.4;
}

.page-promotions__blog-item-title:hover {
  color: var(--secondary-color);
}

.page-promotions__blog-item-excerpt {
  font-size: 0.9em;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 15px;
  flex-grow: 1;
}

.page-promotions__blog-item-date {
  font-size: 0.85em;
  color: rgba(255, 255, 255, 0.5);
  text-align: right;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promotions__main-title {
    font-size: 2.8em;
  }
  .page-promotions__section-title {
    font-size: 2.2em;
  }
  .page-promotions__promo-card-image {
    height: 180px;
  }
  .page-promotions__blog-item-image {
    height: 160px;
  }
}

@media (max-width: 768px) {
  .page-promotions {
    padding-top: 100px !important; /* Mobile: Ensure content is not hidden by fixed header */
  }
  .page-promotions__container {
    padding: 0 15px;
  }
  .page-promotions__hero-section {
    padding: 40px 0;
  }
  .page-promotions__main-title {
    font-size: 2.2em;
    margin-bottom: 15px;
  }
  .page-promotions__description {
    font-size: 1em;
    margin-bottom: 30px;
  }
  .page-promotions__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-promotions__cta-button {
    width: 100%;
    padding: 12px 20px;
    font-size: 1em;
    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.8em;
    margin-bottom: 25px;
  }
  .page-promotions__section-description {
    font-size: 0.95em;
    margin-bottom: 40px;
  }
  .page-promotions__featured-promotions-section,
  .page-promotions__why-choose-section,
  .page-promotions__guide-section,
  .page-promotions__faq-section,
  .page-promotions__brand-section,
  .page-promotions__blog-section {
    padding: 50px 0;
  }
  .page-promotions__promotions-grid,
  .page-promotions__benefits-list,
  .page-promotions__brand-content,
  .page-promotions__blog-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-promotions__promo-card-image {
    height: 160px;
  }
  .page-promotions__promo-card-title {
    font-size: 1.3em;
  }
  .page-promotions__promo-card-text {
    font-size: 0.9em;
  }
  .page-promotions__benefit-title,
  .page-promotions__guide-title,
  .page-promotions__brand-item-title {
    font-size: 1.5em;
  }
  .page-promotions__faq-question {
    padding: 15px 20px;
  }
  .page-promotions__faq-question h3 {
    font-size: 1em;
  }
  .page-promotions__faq-toggle {
    font-size: 20px;
    width: 24px;
    height: 24px;
  }
  .page-promotions__faq-item.active .page-promotions__faq-answer {
    padding: 15px 20px !important;
  }
  .page-promotions__blog-item-image {
    height: 140px;
  }
  .page-promotions__blog-item-title {
    font-size: 1.1em;
  }
  .page-promotions__blog-item-excerpt {
    font-size: 0.85em;
  }

  /* Image and Video responsive adaptation */
  .page-promotions img, .page-promotions video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-promotions__promo-card-image, .page-promotions__blog-item-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-promotions__promo-card, .page-promotions__blog-item, .page-promotions__benefit-item, .page-promotions__guide-item, .page-promotions__brand-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-promotions__cta-buttons {
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
}