.page-promotions__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 10px 20px 40px;
  min-height: 500px;
  background: var(--background-color, #B71C1C);
  color: var(--text-main-color, #FFF5E1);
  position: relative;
  overflow: hidden;
}
.page-promotions__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.page-promotions__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.6);
}
.page-promotions__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding-top: 50px; /* Adjust for visual balance */
}
.page-promotions__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--text-main-color, #FFF5E1);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.page-promotions__description {
  font-size: 1.15rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: var(--text-main-color, #FFF5E1);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.page-promotions__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.page-promotions__btn-primary,
.page-promotions__btn-secondary {
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}
.page-promotions__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%);
  color: #7A0E0E; /* Deep Red for contrast */
  border: none;
  box-shadow: 0 4px 15px rgba(255, 216, 106, 0.4);
}
.page-promotions__btn-primary:hover {
  background: linear-gradient(180deg, #E6B800 0%, #FFD86A 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 216, 106, 0.6);
}
.page-promotions__btn-secondary {
  background: transparent;
  color: var(--text-main-color, #FFF5E1);
  border: 2px solid var(--border-color, #F2B544);
}
.page-promotions__btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
  border-color: #FFF5E1;
}

.page-promotions__section {
  padding: 60px 20px;
  background: #fff;
  color: #333333;
}
.page-promotions__dark-section {
  background: var(--card-bg-color, #D32F2F);
  color: var(--text-main-color, #FFF5E1);
}
.page-promotions__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}
.page-promotions__section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #C91F17;
}
.page-promotions__section-title--light {
  color: var(--text-main-color, #FFF5E1);
}
.page-promotions__text-block {
  font-size: 1.05rem;
  line-height: 1.7;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 30px;
}
.page-promotions__text-block--light {
  color: rgba(255, 255, 255, 0.9);
}

.page-promotions__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}
.page-promotions__feature-item {
  text-align: center;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: #fff;
  color: #333333;
}
.page-promotions__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}
.page-promotions__feature-icon {
  width: 100%;
  max-width: 200px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}
.page-promotions__feature-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #C91F17;
}
.page-promotions__feature-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
}

.page-promotions__promotion-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
}
.page-promotions__promotion-card {
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: var(--card-bg-color, #D32F2F);
  color: var(--text-main-color, #FFF5E1);
}
.page-promotions__promotion-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}
.page-promotions__promotion-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  filter: brightness(0.8);
}
.page-promotions__promotion-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.page-promotions__promotion-title {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--gold-color, #F4D34D);
  line-height: 1.3;
}
.page-promotions__promotion-description {
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 25px;
  color: rgba(255, 255, 255, 0.9);
}
.page-promotions__btn-primary--gold {
  background: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%);
  color: #7A0E0E; /* Deep Red for contrast */
  border: none;
  box-shadow: 0 4px 15px rgba(255, 216, 106, 0.4);
  align-self: flex-start;
}
.page-promotions__btn-primary--gold:hover {
  background: linear-gradient(180deg, #E6B800 0%, #FFD86A 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 216, 106, 0.6);
}

.page-promotions__how-to-claim-section {
  background: #f8f8f8;
}
.page-promotions__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}
.page-promotions__step-item {
  text-align: center;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  background: #fff;
  color: #333333;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.page-promotions__step-number {
  width: 60px;
  height: 60px;
  background: #C91F17;
  color: #FFF5E1;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(201, 31, 23, 0.4);
}
.page-promotions__step-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #C91F17;
}
.page-promotions__step-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
}
.page-promotions__step-description a {
  color: #C91F17;
  text-decoration: underline;
}
.page-promotions__step-description a:hover {
  color: #E53935;
}
.page-promotions__cta-buttons--center {
  margin-top: 40px;
}

.page-promotions__why-choose-us-section {
  background: var(--deep-red-color, #7A0E0E);
}
.page-promotions__benefits-list {
  list-style: none;
  padding: 0;
  margin: 40px auto 30px;
  max-width: 800px;
  text-align: left;
}
.page-promotions__benefit-item {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
}
.page-promotions__benefit-item::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold-color, #F4D34D);
  font-weight: bold;
  font-size: 1.2rem;
  top: 0;
}

.page-promotions__terms-conditions-section {
  background: #fff;
}
.page-promotions__terms-list {
  list-style: decimal;
  padding-left: 25px;
  margin: 40px auto 30px;
  max-width: 800px;
  text-align: left;
  color: #555;
}
.page-promotions__term-item {
  margin-bottom: 10px;
  font-size: 1rem;
  line-height: 1.6;
}

.page-promotions__faq-section {
  background: #f8f8f8;
}
.page-promotions__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
details.page-promotions__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
details.page-promotions__faq-item summary.page-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
  color: #333333;
}
details.page-promotions__faq-item summary.page-promotions__faq-question::-webkit-details-marker {
  display: none;
}
details.page-promotions__faq-item summary.page-promotions__faq-question:hover {
  background: #f5f5f5;
}
.page-promotions__faq-qtext {
  flex: 1;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #C91F17;
}
.page-promotions__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  color: #C91F17;
  flex-shrink: 0;
  margin-left: 15px;
  width: 30px;
  text-align: center;
  line-height: 1;
}
details.page-promotions__faq-item .page-promotions__faq-answer {
  padding: 0 25px 25px;
  background: #f9f9f9;
  border-radius: 0 0 8px 8px;
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
}
.page-promotions__faq-answer p {
  margin-top: 0;
  margin-bottom: 0;
}

.page-promotions__final-cta-section {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(90deg, #C91F17 0%, #E53935 100%);
}
.page-promotions__final-cta-section .page-promotions__section-title {
  margin-bottom: 25px;
}
.page-promotions__final-cta-section .page-promotions__text-block {
  margin-bottom: 40px;
}
.page-promotions__btn-secondary--gold-border {
  background: transparent;
  color: var(--text-main-color, #FFF5E1);
  border: 2px solid var(--gold-color, #F4D34D);
}
.page-promotions__btn-secondary--gold-border:hover {
  background: rgba(244, 211, 77, 0.1);
  border-color: #FFF5E1;
}

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

/* Media Queries */
@media (max-width: 1024px) {
  .page-promotions__main-title {
    font-size: clamp(2.2rem, 4.5vw, 3rem);
  }
  .page-promotions__description {
    font-size: 1rem;
  }
  .page-promotions__section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  }
  .page-promotions__promotion-card {
    flex-direction: column;
  }
  .page-promotions__promotion-image {
    height: 220px;
  }
}

@media (max-width: 768px) {
  .page-promotions__hero-section {
    padding: 10px 15px 30px;
    min-height: 400px;
  }
  .page-promotions__hero-image-wrapper {
    position: relative;
    height: 250px;
    margin-bottom: 20px;
  }
  .page-promotions__hero-image {
    object-fit: contain !important; /* Ensure image is not cropped */
    height: auto !important;
    aspect-ratio: unset !important; /* Remove fixed aspect ratio */
    width: 100% !important;
    filter: brightness(0.7);
  }
  .page-promotions__hero-content {
    padding-top: 0;
  }
  .page-promotions__main-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
    margin-bottom: 15px;
  }
  .page-promotions__description {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }
  .page-promotions__cta-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
  }
  .page-promotions__btn-primary,
  .page-promotions__btn-secondary {
    padding: 12px 20px;
    font-size: 1rem;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-promotions__section {
    padding: 40px 15px;
  }
  .page-promotions__container {
    padding: 0;
  }
  .page-promotions__section-title {
    font-size: clamp(1.5rem, 6vw, 2.2rem);
    margin-bottom: 30px;
  }
  .page-promotions__text-block {
    font-size: 0.95rem;
    margin-bottom: 25px;
  }

  .page-promotions__features-grid,
  .page-promotions__promotion-grid,
  .page-promotions__steps-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .page-promotions__feature-item,
  .page-promotions__promotion-card,
  .page-promotions__step-item {
    padding: 25px;
  }
  .page-promotions__promotion-image {
    height: 200px;
  }
  .page-promotions__promotion-title {
    font-size: 1.4rem;
  }
  .page-promotions__promotion-description {
    font-size: 0.95rem;
  }
  .page-promotions__step-number {
    width: 50px;
    height: 50px;
    font-size: 1.8rem;
    margin-bottom: 15px;
  }
  .page-promotions__step-title {
    font-size: 1.2rem;
  }
  .page-promotions__step-description {
    font-size: 0.9rem;
  }

  .page-promotions__benefits-list,
  .page-promotions__terms-list {
    margin-top: 30px;
    padding-left: 20px;
  }
  .page-promotions__benefit-item,
  .page-promotions__term-item {
    font-size: 0.95rem;
    padding-left: 25px;
  }
  .page-promotions__benefit-item::before {
    font-size: 1.1rem;
  }

  .page-promotions__faq-list {
    margin-top: 30px;
  }
  details.page-promotions__faq-item summary.page-promotions__faq-question {
    padding: 15px 20px;
  }
  .page-promotions__faq-qtext {
    font-size: 1rem;
  }
  .page-promotions__faq-toggle {
    font-size: 24px;
    width: 25px;
  }
  details.page-promotions__faq-item .page-promotions__faq-answer {
    padding: 0 20px 20px;
  }
  .page-promotions__final-cta-section {
    padding: 60px 15px;
  }

  /* Universal image and container responsive styles */
  .page-promotions img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-promotions__section,
  .page-promotions__card,
  .page-promotions__container,
  .page-promotions__cta-buttons,
  .page-promotions__button-group,
  .page-promotions__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  /* Ensure flex containers wrap */
  .page-promotions__cta-buttons {
    flex-wrap: wrap !important;
    gap: 10px;
  }
  .page-promotions__cta-buttons--center {
    flex-direction: column;
  }
}