.page-promotions {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light backgrounds */
  background-color: #F4F7FB; /* Custom Background */
}

.page-promotions__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 40px;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  background-color: #2F6BFF;
  overflow: hidden;
}

.page-promotions__hero-image {
  width: 100%;
  height: auto;
  max-width: 1920px; /* Ensure hero image is large */
  display: block;
  object-fit: cover;
}

.page-promotions__hero-content {
  width: 100%;
  max-width: 1200px;
  margin-top: 20px;
  padding: 0 20px;
  text-align: center;
  color: #ffffff;
}

.page-promotions__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
  color: #ffffff;
}

.page-promotions__hero-description {
  font-size: 1.15rem;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-promotions__btn-primary,
.page-promotions__btn-secondary,
.page-promotions__btn-link {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
  box-sizing: border-box;
}

.page-promotions__btn-primary {
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #ffffff;
  border: 2px solid transparent;
}

.page-promotions__btn-primary:hover {
  background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
  transform: translateY(-2px);
}

.page-promotions__btn-secondary {
  background: #ffffff;
  color: #2F6BFF; /* Custom Color_1776249996415 */
  border: 2px solid #2F6BFF;
}

.page-promotions__btn-secondary:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
}

.page-promotions__btn-link {
  background: transparent;
  color: #2F6BFF;
  border: 2px solid transparent;
  padding: 10px 0;
  font-weight: 700;
}

.page-promotions__btn-link:hover {
  text-decoration: underline;
}

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

.page-promotions__section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
  color: #1F2D3D; /* Text Main */
}

.page-promotions__section-title--white {
  color: #ffffff;
}

.page-promotions__text-block {
  font-size: 1.05rem;
  margin-bottom: 20px;
  color: #1F2D3D; /* Text Main */
  line-height: 1.7;
}

.page-promotions__text-block--white {
  color: #ffffff;
}

.page-promotions__overview-section,
.page-promotions__how-to-join,
.page-promotions__faq-section {
  padding: 60px 0;
  background-color: #F4F7FB; /* Custom Background */
  color: #1F2D3D; /* Text Main */
}

.page-promotions__image-full {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px 0;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-promotions__featured-promos,
.page-promotions__terms-conditions,
.page-promotions__cta-final {
  padding: 60px 0;
  background-color: #2F6BFF; /* Main Color */
  color: #ffffff;
}

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

.page-promotions__promo-card {
  background-color: #FFFFFF; /* Card BG */
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 25px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #1F2D3D; /* Text Main */
}

.page-promotions__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

.page-promotions__card-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #1F2D3D; /* Text Main */
}

.page-promotions__card-description {
  font-size: 0.95rem;
  margin-bottom: 25px;
  flex-grow: 1;
  color: #1F2D3D; /* Text Main */
}

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

.page-promotions__step-card {
  background-color: #FFFFFF; /* Card BG */
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 25px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #1F2D3D; /* Text Main */
}

.page-promotions__step-icon {
  width: 60px;
  height: 60px;
  background-color: #2F6BFF; /* Main Color */
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.page-promotions__step-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #1F2D3D; /* Text Main */
}

.page-promotions__step-description {
  font-size: 0.95rem;
  margin-bottom: 20px;
  flex-grow: 1;
  color: #1F2D3D; /* Text Main */
}

.page-promotions__terms-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-promotions__terms-item {
  background-color: rgba(255, 255, 255, 0.1);
  border-left: 5px solid #6FA3FF; /* Auxiliary Color */
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 5px;
  font-size: 1rem;
  color: #ffffff;
}

.page-promotions__faq-list {
  margin-top: 30px;
}

.page-promotions__faq-item {
  background-color: #FFFFFF; /* Card BG */
  border: 1px solid #D6E2FF; /* Border Color */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #1F2D3D; /* Text Main */
}

.page-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.1rem;
  color: #1F2D3D; /* Text Main */
  background-color: #F4F7FB; /* Custom Background */
  border-bottom: 1px solid #D6E2FF; /* Border Color */
  list-style: none; /* For details/summary */
}

.page-promotions__faq-item[open] .page-promotions__faq-question {
  border-bottom: 1px solid #D6E2FF; /* Border Color */
}

.page-promotions__faq-question::-webkit-details-marker {
  display: none;
}

.page-promotions__faq-question::marker {
  display: none;
}

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

.page-promotions__faq-toggle {
  font-size: 1.5rem;
  margin-left: 15px;
  color: #2F6BFF; /* Main Color */
}

.page-promotions__faq-item[open] .page-promotions__faq-toggle {
  content: '−';
}

.page-promotions__faq-answer {
  padding: 15px 25px 20px;
  font-size: 1rem;
  color: #1F2D3D; /* Text Main */
  line-height: 1.6;
}

.page-promotions__cta-final {
  text-align: center;
  padding: 80px 0;
  background-color: #2F6BFF; /* Main Color */
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promotions__hero-content {
    padding: 0 15px;
  }

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

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

  .page-promotions__promo-grid,
  .page-promotions__steps-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-promotions {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-promotions__hero-section,
  .page-promotions__overview-section,
  .page-promotions__featured-promos,
  .page-promotions__how-to-join,
  .page-promotions__terms-conditions,
  .page-promotions__faq-section,
  .page-promotions__cta-final {
    padding: 40px 0;
  }

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

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

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

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

  .page-promotions__btn-primary,
  .page-promotions__btn-secondary,
  .page-promotions__btn-link {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Image responsiveness */
  .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__promo-grid,
  .page-promotions__steps-grid {
    grid-template-columns: 1fr;
  }

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

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

  .page-promotions__faq-answer {
    padding: 10px 20px 15px;
  }
}

@media (max-width: 480px) {
  .page-promotions__main-title {
    font-size: clamp(1.5rem, 8vw, 2rem);
  }

  .page-promotions__section-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  .page-promotions__btn-primary,
  .page-promotions__btn-secondary,
  .page-promotions__btn-link {
    padding: 12px 20px;
    font-size: 0.9rem;
  }
}