.page-promotions {
  font-family: 'Arial', sans-serif;
  color: #333333; /* Default text color for light body background */
  line-height: 1.6;
  font-size: 16px;
  background-color: #f8f9fa; /* Ensure consistency with body background */
}

/* Hero Section */
.page-promotions__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column; /* Image first, then content */
  align-items: center;
  padding-top: 10px; /* Small top padding for first section */
  padding-bottom: 60px;
  background-color: #0D0E12; /* Dark background for hero area */
  color: #FFF3E6; /* Light text for dark background */
  overflow: hidden; /* Ensure no overflow */
}

.page-promotions__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 500px; /* Limit height for hero image */
  filter: brightness(0.7); /* Slightly darken image for text contrast, if text is directly on image, but here text is below */
}

.page-promotions__hero-content {
  width: 100%;
  max-width: 900px;
  padding: 40px 20px;
  text-align: center;
  box-sizing: border-box;
  margin-top: -100px; /* Overlap slightly with image for visual appeal */
  z-index: 1;
  position: relative;
}

.page-promotions__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive H1 font size */
  font-weight: 700;
  margin-bottom: 20px;
  color: #FFF3E6;
  line-height: 1.2;
}

.page-promotions__hero-description {
  font-size: 1.15rem;
  margin-bottom: 30px;
  color: #f0f0f0;
}

/* General Section Styling */
.page-promotions__section {
  padding: 60px 20px;
  width: 100%;
  box-sizing: border-box;
  background-color: #f8f9fa; /* Light background for default sections */
  color: #333333;
}

.page-promotions__dark-section {
  background-color: #0D0E12; /* Dark background for specific sections */
  color: #FFF3E6;
}

.page-promotions__container {
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 0 15px; /* Inner padding for container */
}

.page-promotions__title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: inherit; /* Inherit color from section */
}

.page-promotions__dark-section .page-promotions__title {
  color: #FFF3E6;
}

.page-promotions__text-block {
  font-size: 1rem;
  margin-bottom: 20px;
  text-align: justify;
  color: inherit; /* Inherit color from section */
}

.page-promotions__text-block--center {
  text-align: center;
}

/* CTA Buttons */
.page-promotions__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 30px;
}

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

.page-promotions__btn-primary,
.page-promotions__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow long words to break */
  max-width: 100%; /* Ensure button doesn't overflow */
  box-sizing: border-box;
  text-align: center;
}

.page-promotions__btn-primary {
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
  color: #FFF3E6;
  border: 2px solid transparent;
}

.page-promotions__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 165, 58, 0.4);
}

.page-promotions__btn-secondary {
  background: transparent;
  color: #FF8C1A;
  border: 2px solid #FF8C1A;
}

.page-promotions__btn-secondary:hover {
  background: #FF8C1A;
  color: #FFF3E6;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 140, 26, 0.2);
}

.page-promotions__btn-small {
  padding: 10px 20px;
  font-size: 0.9rem;
}

/* Grid for cards */
.page-promotions__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-promotions__card {
  background-color: #17191F; /* Card background color */
  color: #FFF3E6; /* Light text for dark card background */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  padding-bottom: 20px;
  border: 1px solid #A84F0C; /* Border color */
}

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

.page-promotions__card-image {
  width: 100%;
  height: 200px; /* Fixed height for consistent card images */
  object-fit: cover;
  display: block;
}

.page-promotions__card-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin: 20px 20px 10px;
  color: #FFA53A; /* Highlight card titles with accent color */
}

.page-promotions__card-text {
  font-size: 0.95rem;
  margin: 0 20px 20px;
  flex-grow: 1; /* Allow text to grow and push button to bottom */
  color: #f0f0f0;
}

.page-promotions__card .page-promotions__btn-primary {
  margin: 0 20px;
  align-self: flex-start; /* Align button to start within card */
  width: auto; /* Allow button to size to content */
}

/* Steps Section */
.page-promotions__steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-promotions__step-item {
  background-color: #17191F;
  color: #FFF3E6;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #A84F0C;
}

.page-promotions__step-number {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
  font-size: 2rem;
  font-weight: 700;
  color: #FFF3E6;
  margin-bottom: 20px;
  box-shadow: 0 0 15px #FFB04D; /* Glow effect */
}

.page-promotions__step-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #FFA53A;
}

.page-promotions__step-description {
  font-size: 1rem;
  color: #f0f0f0;
}

/* FAQ Section */
.page-promotions__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions__faq-item {
  background-color: #17191F;
  color: #FFF3E6;
  border: 1px solid #A84F0C;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.page-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  color: #FFF3E6;
  background-color: #2a2d36; /* Slightly lighter dark for question header */
  border-bottom: 1px solid #A84F0C;
  list-style: none; /* Hide default marker for summary */
}

.page-promotions__faq-question::-webkit-details-marker {
  display: none; /* Hide default marker for webkit browsers */
}

.page-promotions__faq-question:hover {
  background-color: #3e424e;
}

.page-promotions__faq-qtext {
  flex-grow: 1;
}

.page-promotions__faq-toggle {
  font-size: 1.8rem;
  line-height: 1;
  margin-left: 15px;
  color: #FFA53A;
  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;
  line-height: 1.8;
  color: #f0f0f0;
}

.page-promotions__faq-answer p:last-child {
  margin-bottom: 0;
}

/* Video Section */
.page-promotions__video-section {
  padding: 60px 20px;
  width: 100%;
  box-sizing: border-box;
  background-color: #0D0E12;
  color: #FFF3E6;
  text-align: center;
}

.page-promotions__video-wrapper {
  display: block; /* Ensures the anchor wraps the video properly */
  width: 100%;
  max-width: 800px; /* Max width for video container */
  margin: 40px auto 20px auto;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  border: 2px solid #A84F0C;
  cursor: pointer;
}

.page-promotions__video {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 10px; /* Slightly smaller border-radius inside wrapper */
}

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

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

  .page-promotions__hero-description {
    font-size: 1rem;
  }

  .page-promotions__title {
    font-size: 2rem;
  }

  .page-promotions__grid,
  .page-promotions__steps {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .page-promotions__hero-section {
    padding-bottom: 40px;
  }

  .page-promotions__hero-content {
    margin-top: -60px;
    padding: 20px 10px;
  }

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

  .page-promotions__hero-description {
    font-size: 0.95rem;
  }

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

  .page-promotions__container {
    padding: 0 10px;
  }

  .page-promotions__title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .page-promotions__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-promotions__btn-primary,
  .page-promotions__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1rem;
  }

  .page-promotions__card-image {
    height: 180px;
  }

  .page-promotions__card-title {
    font-size: 1.2rem;
  }

  .page-promotions__step-number {
    width: 50px;
    height: 50px;
    font-size: 1.8rem;
  }

  .page-promotions__step-title {
    font-size: 1.3rem;
  }

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

  .page-promotions__faq-answer {
    padding: 15px 20px;
    font-size: 0.95rem;
  }

  .page-promotions__video-section {
    padding: 40px 15px;
  }

  .page-promotions__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
    margin: 30px auto 15px auto;
  }

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

  /* Mobile image specific rules */
  .page-promotions img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-promotions__section,
  .page-promotions__card,
  .page-promotions__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-promotions__video-section {
    padding-top: 10px !important;
  }

  /* For multiple buttons in a row, allow wrapping */
  .page-promotions__cta-buttons {
    flex-wrap: wrap !important;
    gap: 10px;
  }
  .page-promotions__cta-buttons a {
    flex: 1 1 auto; /* Allow items to grow and shrink */
    min-width: 150px; /* Minimum width for buttons */
  }
}