:root {
  --primary-color: #0A1931; /* Deep Blue */
  --secondary-color: #FFD700; /* Gold */
  --accent-color: #dc3545; /* Red for emphasis, e.g., errors */
  --text-light: #ffffff;
  --text-dark: #333333;
  --bg-dark: #000; /* Body background from shared.css */
  --card-bg-dark: rgba(255, 255, 255, 0.08); /* Slightly visible on dark bg */
  --card-border-dark: rgba(255, 255, 255, 0.15);
  --button-hover-dark: #071221;
  --button-hover-gold: #e6c200;
}

/* Base styles for the page content, considering the dark body background */
.page-promotions {
  color: var(--text-light); /* Light text on dark body background */
  background-color: transparent; /* Main content background will be handled by sections */
  padding-top: 120px; /* Default padding for desktop to clear fixed header */
}

/* Fixed header padding for the very first section */
.page-promotions__hero-section {
  position: relative;
  width: 100%;
  padding: 80px 20px;
  padding-top: 10px; /* Specific padding-top for video/hero section as per prompt example */
  background: linear-gradient(135deg, var(--primary-color), #1a2a44);
  color: var(--text-light);
  text-align: center;
  overflow: hidden; /* Ensure no overflow */
}

.page-promotions__hero-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.page-promotions__main-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: var(--secondary-color);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
  font-weight: 700;
}

.page-promotions__hero-description {
  font-size: 1.2em;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 40px;
  color: rgba(255, 255, 255, 0.9);
  text-align: justify;
}

.page-promotions__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap; /* Allow wrapping on small screens */
  width: 100%; /* Ensure container takes full width for responsive buttons */
  max-width: 100%;
  box-sizing: border-box;
  padding: 0 15px; /* Add padding to container for buttons */
}

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

.page-promotions__cta-button {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  text-align: center;
  box-sizing: border-box; /* Ensure padding and border are included in the element's total width */
  max-width: 100%; /* Ensure button doesn't exceed container width */
  white-space: normal; /* Allow text to wrap */
  word-wrap: break-word; /* Break long words */
}

.page-promotions__cta-button--primary {
  background: var(--secondary-color);
  color: var(--primary-color);
  border: 2px solid var(--secondary-color);
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.page-promotions__cta-button--primary:hover {
  background: var(--button-hover-gold);
  border-color: var(--button-hover-gold);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.page-promotions__cta-button--secondary {
  background: transparent;
  color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.1);
}

.page-promotions__cta-button--secondary:hover {
  background: rgba(255, 215, 0, 0.1);
  color: var(--button-hover-gold);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.2);
}

/* General Section Styles */
.page-promotions__section-title {
  font-size: 2.5em;
  color: var(--secondary-color);
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.page-promotions__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  box-sizing: border-box; /* Ensure padding is included */
}

.page-promotions__text-block {
  font-size: 1.1em;
  line-height: 1.7;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.85); /* Light text on dark sections */
  text-align: justify;
}

/* Dark section for contrast */
.page-promotions__dark-section {
  background-color: var(--primary-color);
  color: var(--text-light);
}
.page-promotions__dark-section .page-promotions__section-title {
  color: var(--secondary-color);
}
.page-promotions__dark-section .page-promotions__text-block {
  color: rgba(255, 255, 255, 0.85);
}


/* Categories Section */
.page-promotions__categories-section {
  background-color: #1a2a44; /* Slightly lighter dark blue */
}

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

.page-promotions__promotion-card {
  background: var(--card-bg-dark);
  border: 1px solid var(--card-border-dark);
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--text-light);
  height: 100%; /* Ensure cards have equal height */
  box-sizing: border-box;
}

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

.page-promotions__card-image {
  width: 100%;
  max-width: 300px; /* Example max-width for card images */
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.page-promotions__card-title {
  font-size: 1.6em;
  color: var(--secondary-color);
  margin-bottom: 15px;
  font-weight: 600;
  line-height: 1.3;
}

.page-promotions__card-description {
  font-size: 1em;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  flex-grow: 1; /* Allow description to take available space */
  margin-bottom: 20px;
}

.page-promotions__card-button {
  display: inline-block;
  padding: 10px 25px;
  background: var(--secondary-color);
  color: var(--primary-color);
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 2px 8px rgba(255, 215, 0, 0.2);
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-promotions__card-button:hover {
  background: var(--button-hover-gold);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

/* Guide Section */
.page-promotions__guide-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.page-promotions__guide-item {
  background: var(--card-bg-dark);
  border: 1px solid var(--card-border-dark);
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions__guide-item-title {
  font-size: 1.5em;
  color: var(--secondary-color);
  margin-bottom: 10px;
  font-weight: 600;
}

.page-promotions__guide-item p {
  font-size: 1em;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}

/* Why Choose Section */
.page-promotions__why-choose-section {
  background-color: #1a2a44; /* Slightly lighter dark blue */
}

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

.page-promotions__why-item {
  background: var(--card-bg-dark);
  border: 1px solid var(--card-border-dark);
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  height: 100%;
  box-sizing: border-box;
}

.page-promotions__why-item-title {
  font-size: 1.4em;
  color: var(--secondary-color);
  margin-bottom: 10px;
  font-weight: 600;
}

.page-promotions__why-item p {
  font-size: 1em;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  flex-grow: 1;
}

/* Terms Section */
.page-promotions__terms-list {
  list-style: disc;
  padding-left: 25px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.8);
}

.page-promotions__terms-item {
  margin-bottom: 10px;
  line-height: 1.6;
  font-size: 1em;
}

/* FAQ Section */
.page-promotions__faq-section {
  background-color: #1a2a44; /* Slightly lighter dark blue */
}

.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 4px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: var(--card-bg-dark);
  border: 1px solid var(--card-border-dark);
  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: rgba(255, 255, 255, 0.2);
}

.page-promotions__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 1.1em;
  font-weight: 600;
  line-height: 1.5;
  color: var(--secondary-color);
  pointer-events: none; /* Prevent h3 from blocking click event */
}

.page-promotions__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: var(--secondary-color);
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none; /* Prevent icon from blocking click event */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.page-promotions__faq-item.active .page-promotions__faq-toggle {
  color: var(--primary-color);
  background-color: var(--secondary-color);
  transform: rotate(45deg); /* Rotate to show 'x' or '-' effect */
}

.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);
  border-radius: 0 0 8px 8px;
  border-top: 1px solid var(--card-border-dark);
}

.page-promotions__faq-item.active .page-promotions__faq-answer {
  max-height: 2000px !important; /* Important for override and large enough */
  padding: 20px 25px !important;
  opacity: 1;
  color: rgba(255, 255, 255, 0.85);
}

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

/* Final CTA Section */
.page-promotions__final-cta-section {
  padding-bottom: 80px;
}

/* Footer content within main to adhere to the prompt's structure */
.page-promotions__footer-content {
  background-color: var(--primary-color);
  color: rgba(255, 255, 255, 0.7);
  padding: 40px 20px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.page-promotions__footer-content .page-promotions__container {
  padding: 0; /* Override default container padding */
}

.page-promotions__copyright {
  font-size: 0.9em;
  margin-bottom: 10px;
}

.page-promotions__contact-info {
  font-size: 0.9em;
}

.page-promotions__contact-info p {
  margin: 5px 0;
}

.page-promotions__contact-info a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-promotions__contact-info a:hover {
  color: var(--button-hover-gold);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promotions__main-title {
    font-size: 2.8em;
  }
  .page-promotions__section-title {
    font-size: 2.2em;
  }
  .page-promotions__grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  .page-promotions__promotion-card {
    padding: 20px;
  }
  .page-promotions__card-title {
    font-size: 1.4em;
  }
}

@media (max-width: 768px) {
  .page-promotions {
    padding-top: 100px !important; /* Mobile padding to clear fixed header */
    font-size: 16px; /* Base font size for mobile */
    line-height: 1.6;
  }

  .page-promotions__hero-section {
    padding-top: 10px !important; /* Mobile padding for hero section */
    padding-bottom: 60px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-promotions__main-title {
    font-size: 2.2em;
    margin-bottom: 15px;
  }

  .page-promotions__hero-description {
    font-size: 1em;
    margin-bottom: 30px;
  }

  .page-promotions__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 10px; /* Adjust padding for smaller screens */
  }

  .page-promotions__cta-button {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-promotions__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-promotions__container {
    padding: 40px 15px; /* Adjust container padding for mobile */
  }

  .page-promotions__text-block {
    font-size: 0.95em;
    margin-bottom: 15px;
  }

  .page-promotions__grid {
    grid-template-columns: 1fr; /* Single column layout for cards */
    gap: 20px;
  }

  .page-promotions__promotion-card {
    padding: 20px;
  }

  .page-promotions__card-image {
    max-width: 250px; /* Adjust max-width for smaller card images */
  }
}