.page-promotions {
  color: #ffffff; /* Body background is #000000 (dark), so use light text */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #000000; /* Ensure main content area matches body background */
  padding-top: var(--header-offset, 120px);
}

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

.page-promotions__section-title {
  font-size: 36px;
  font-weight: bold;
  color: #CC0000; /* Brand red for titles */
  text-align: center;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.page-promotions__section-subtitle {
  font-size: 18px;
  color: #f0f0f0;
  text-align: center;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* CTA Button Styles */
.page-promotions__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  text-align: center;
  cursor: pointer;
  border: none;
  margin: 0 10px;
}

.page-promotions__cta-button--primary {
  background-color: #CC0000;
  color: #ffffff;
}

.page-promotions__cta-button--primary:hover {
  background-color: #A30000;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.page-promotions__cta-button--secondary {
  background-color: #333333;
  color: #ffffff;
}

.page-promotions__cta-button--secondary:hover {
  background-color: #1a1a1a;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

/* Hero Section */
.page-promotions__hero-section {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  background-color: #0d0d0d; /* Slightly lighter dark background for hero */
  gap: 40px;
}

.page-promotions__hero-content {
  flex: 1;
  max-width: 600px;
  text-align: left;
}

.page-promotions__main-title {
  font-size: 48px;
  color: #CC0000;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-promotions__description {
  font-size: 20px;
  color: #f0f0f0;
  margin-bottom: 30px;
}

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

.page-promotions__hero-image-wrapper {
  flex: 1;
  max-width: 600px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-promotions__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Promotions Grid Section */
.page-promotions__promotions-grid {
  padding: 80px 0;
  background-color: #000000;
}

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

.page-promotions__promotion-card {
  background-color: #1a1a1a; /* Darker background for cards */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  color: #ffffff;
}

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

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

.page-promotions__card-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.page-promotions__card-title {
  font-size: 22px;
  font-weight: bold;
  color: #CC0000;
  margin-bottom: 15px;
}

.page-promotions__card-description {
  font-size: 16px;
  color: #cccccc;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-promotions__card-button {
  display: inline-block;
  padding: 12px 25px;
  background-color: #CC0000;
  color: #ffffff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  font-size: 16px;
  text-align: center;
  transition: background-color 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  align-self: flex-start;
}

.page-promotions__card-button:hover {
  background-color: #A30000;
}

/* FAQ Section */
.page-promotions__faq-section {
  padding: 80px 0;
  background-color: #0d0d0d; /* Slightly lighter dark background */
}

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

.page-promotions__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
}

.page-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: #1a1a1a;
  border: 1px solid #333333;
  border-radius: 5px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
  color: #ffffff;
}

.page-promotions__faq-question:hover {
  background: #2a2a2a;
  border-color: #555555;
}

.page-promotions__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  pointer-events: none;
  color: #CC0000; /* Brand red for FAQ questions */
}

.page-promotions__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  color: #cccccc;
  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: #CC0000;
  transform: rotate(45deg);
}

.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 20px;
  opacity: 0;
  background-color: #222222;
  color: #f0f0f0;
}

.page-promotions__faq-item.active .page-promotions__faq-answer {
  max-height: 2000px !important;
  padding: 20px !important;
  opacity: 1;
  border-radius: 0 0 5px 5px;
  border: 1px solid #333333;
  border-top: none;
}

.page-promotions__faq-answer p {
  margin: 0;
  padding: 0;
}

.page-promotions__download-app-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #CC0000;
  color: #ffffff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  font-size: 16px;
  text-align: center;
  transition: background-color 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  margin-top: 20px;
}

.page-promotions__download-app-button:hover {
  background-color: #A30000;
}

/* Brand Section */
.page-promotions__brand-section {
  padding: 80px 0;
  background-color: #1a1a1a; /* Lighter dark background for brand section */
  color: #ffffff;
}

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

.page-promotions__brand-item {
  background-color: #222222;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-promotions__brand-item:hover {
  transform: translateY(-5px);
}

.page-promotions__brand-image {
  width: 100%;
  max-width: 300px;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions__brand-item-title {
  font-size: 24px;
  font-weight: bold;
  color: #CC0000;
  margin-bottom: 15px;
}

.page-promotions__brand-item-description {
  font-size: 16px;
  color: #cccccc;
}

/* Blog Section */
.page-promotions__blog-section {
  padding: 80px 0;
  background-color: #000000;
}

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

.page-promotions__blog-item {
  background-color: #1a1a1a;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

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

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

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

.page-promotions__blog-item-title {
  font-size: 22px;
  font-weight: bold;
  color: #CC0000;
  margin-bottom: 10px;
  line-height: 1.3;
}

.page-promotions__blog-item-excerpt {
  font-size: 16px;
  color: #cccccc;
  margin-bottom: 15px;
  flex-grow: 1;
}

.page-promotions__blog-item-date {
  font-size: 14px;
  color: #999999;
  text-align: right;
}

.page-promotions__view-all-button-wrapper {
  text-align: center;
  margin-top: 50px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promotions__hero-section {
    flex-direction: column;
    text-align: center;
    padding: 60px 20px;
    gap: 30px;
  }

  .page-promotions__hero-content {
    max-width: 100%;
    text-align: center;
  }

  .page-promotions__main-title {
    font-size: 42px;
  }

  .page-promotions__description {
    font-size: 18px;
  }

  .page-promotions__cta-buttons {
    justify-content: center;
  }

  .page-promotions__hero-image-wrapper {
    max-width: 100%;
  }

  .page-promotions__section-title {
    font-size: 32px;
  }

  .page-promotions__section-subtitle {
    font-size: 16px;
  }

  .page-promotions__promotion-card, .page-promotions__brand-item, .page-promotions__blog-item {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .page-promotions {
    padding-top: var(--header-offset, 120px) !important;
    font-size: 16px;
    line-height: 1.6;
  }

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

  .page-promotions__hero-section {
    padding: 40px 15px;
    gap: 20px;
  }

  .page-promotions__main-title {
    font-size: 36px;
    text-align: center;
  }

  .page-promotions__description {
    font-size: 16px;
    text-align: center;
  }

  .page-promotions__cta-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0 15px;
  }

  .page-promotions__cta-button {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 12px 20px;
    font-size: 16px;
    margin: 0;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-promotions__hero-image-wrapper {
    padding: 0 15px;
    box-sizing: border-box;
  }

  .page-promotions__hero-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-promotions__section-title {
    font-size: 28px;
  }

  .page-promotions__section-subtitle {
    font-size: 14px;
    margin-bottom: 30px;
  }

  .page-promotions__grid-wrapper {
    grid-template-columns: 1fr;
  }

  .page-promotions__promotion-card {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-promotions__card-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-promotions__faq-question {
    padding: 15px;
    flex-wrap: wrap;
  }
  
  .page-promotions__faq-question h3 {
    font-size: 16px;
    margin-bottom: 0;
    width: calc(100% - 40px);
  }
  
  .page-promotions__faq-toggle {
    margin-left: 10px;
    width: 24px;
    height: 24px;
    font-size: 20px;
  }
  
  .page-promotions__faq-answer {
    padding: 0 15px;
  }
  
  .page-promotions__faq-item.active .page-promotions__faq-answer {
    padding: 15px !important;
  }

  .page-promotions__download-app-button {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    margin-top: 15px;
  }

  .page-promotions__brand-content {
    grid-template-columns: 1fr;
  }

  .page-promotions__brand-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-promotions__brand-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-promotions__blog-list {
    grid-template-columns: 1fr;
  }

  .page-promotions__blog-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-promotions__blog-item-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-promotions__view-all-button-wrapper {
    padding: 0 15px;
    box-sizing: border-box;
  }
}