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

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

.page-promotions__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 10px; /* Small top padding as body has --header-offset */
  padding-bottom: 60px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Brand primary color gradient */
  color: #ffffff;
}

.page-promotions__hero-image-container {
  width: 100%;
  max-height: 600px; /* Limit image height */
  overflow: hidden;
  margin-bottom: 30px;
}

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

.page-promotions__hero-content {
  position: relative; /* Ensure content is above any background elements */
  z-index: 2;
  max-width: 900px;
  padding: 0 20px;
}

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

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

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

.page-promotions__btn-primary,
.page-promotions__btn-secondary,
.page-promotions__btn-tertiary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  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;
  box-shadow: 0 4px 15px rgba(47, 107, 255, 0.4);
}

.page-promotions__btn-primary:hover {
  background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
  box-shadow: 0 6px 20px rgba(47, 107, 255, 0.6);
}

.page-promotions__btn-primary--large {
  padding: 18px 40px;
  font-size: 1.1rem;
}

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

.page-promotions__btn-secondary:hover {
  background: #e0eaff;
  color: #1a5acb;
  border-color: #1a5acb;
}

.page-promotions__btn-tertiary {
  background: #2F6BFF;
  color: #ffffff;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 0.9rem;
}

.page-promotions__btn-tertiary:hover {
  background: #4A8BFF;
}

.page-promotions__section {
  padding: 60px 0;
}

.page-promotions__introduction-section {
  background: #F4F7FB;
  color: #1F2D3D;
}

.page-promotions__section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #1F2D3D; /* Main text color */
}

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

.page-promotions__text-block {
  font-size: 1.1rem;
  margin-bottom: 20px;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #1F2D3D;
}

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

.page-promotions__offers-section {
  background: #F4F7FB;
}

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

.page-promotions__card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #1F2D3D;
}

.page-promotions__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-promotions__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  max-width: 100%; /* Ensure images are responsive */
  display: block;
}

.page-promotions__card-title {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #2F6BFF;
}

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

.page-promotions__card-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  text-align: left;
  width: 100%;
}

.page-promotions__card-list li {
  margin-bottom: 8px;
  font-size: 0.95rem;
  color: #555555;
  position: relative;
  padding-left: 25px;
}

.page-promotions__card-list li::before {
  content: '✓';
  color: #2F6BFF;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-promotions__terms-section {
  background: #F4F7FB;
  color: #1F2D3D;
}

.page-promotions__styled-list {
  list-style: none;
  padding: 0;
  margin: 30px auto;
  max-width: 900px;
}

.page-promotions__styled-list li {
  background: #ffffff;
  border: 1px solid #D6E2FF;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 15px;
  font-size: 1.05rem;
  line-height: 1.5;
  color: #1F2D3D;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-promotions__styled-list li strong {
  color: #2F6BFF;
}

.page-promotions__styled-list li a {
  color: #2F6BFF;
  text-decoration: underline;
}

.page-promotions__how-to-join-section {
  background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
  color: #ffffff;
}

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

.page-promotions__step-card {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions__step-icon {
  font-size: 2.5rem;
  font-weight: 700;
  color: #A5C4FF; /* Glow color */
  margin-bottom: 15px;
}

.page-promotions__step-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #ffffff;
}

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

.page-promotions__step-description a {
  color: #A5C4FF;
  text-decoration: underline;
}

.page-promotions__cta-center {
  text-align: center;
  margin-top: 40px;
}

.page-promotions__faq-section {
  background: #F4F7FB;
  color: #1F2D3D;
}

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

.page-promotions__faq-item {
  background: #ffffff;
  border: 1px solid #D6E2FF;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.15rem;
  font-weight: 600;
  color: #2F6BFF;
  cursor: pointer;
  list-style: none; /* For details/summary */
}

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

.page-promotions__faq-toggle {
  font-size: 1.8rem;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-promotions__faq-item[open] .page-promotions__faq-toggle {
  transform: rotate(45deg); /* Rotate for minus sign */
}

.page-promotions__faq-answer {
  padding: 0 25px 20px;
  font-size: 1rem;
  color: #555555;
}

.page-promotions__faq-answer p {
  margin-bottom: 10px;
}

.page-promotions__faq-answer a {
  color: #2F6BFF;
  text-decoration: underline;
}

.page-promotions__conclusion-section {
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #ffffff;
  text-align: center;
}

.page-promotions__conclusion-section .page-promotions__text-block {
  max-width: 800px;
}

.page-promotions a {
  color: #2F6BFF;
  text-decoration: none;
}

.page-promotions a:hover {
  text-decoration: underline;
}

/* --- Responsive Styles --- */

/* Desktop/Tablet (max-width: 1024px) */
@media (max-width: 1024px) {
  .page-promotions__hero-section {
    padding-bottom: 40px;
  }

  .page-promotions__hero-image-container {
    max-height: 500px;
  }

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

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

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

  .page-promotions__section-title {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .page-promotions__text-block {
    font-size: 1rem;
  }

  .page-promotions__grid {
    gap: 20px;
  }

  .page-promotions__card {
    padding: 25px;
  }

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

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

  .page-promotions__styled-list li,
  .page-promotions__faq-question {
    font-size: 1rem;
  }

  .page-promotions__faq-answer {
    font-size: 0.95rem;
  }

  .page-promotions__steps-grid {
    gap: 20px;
  }

  .page-promotions__step-icon {
    font-size: 2rem;
  }

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

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

  .page-promotions__hero-section {
    padding-top: 10px !important;
    padding-bottom: 30px;
  }

  .page-promotions__hero-image-container {
    max-height: 300px;
    margin-bottom: 20px;
  }

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

  .page-promotions__hero-content {
    padding: 0 15px;
  }

  .page-promotions__main-title {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
    margin-bottom: 15px;
  }

  .page-promotions__hero-description {
    font-size: 1rem;
    margin-bottom: 20px;
  }

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

  .page-promotions__btn-primary,
  .page-promotions__btn-secondary,
  .page-promotions__btn-tertiary,
  .page-promotions a[class*="button"],
  .page-promotions a[class*="btn"] {
    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;
  }

  .page-promotions__section {
    padding: 30px 0;
  }

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

  .page-promotions__section-title {
    font-size: 1.8rem;
    margin-bottom: 25px;
  }

  .page-promotions__text-block {
    font-size: 0.95rem;
    text-align: left;
  }

  .page-promotions__grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .page-promotions__card {
    padding: 20px;
  }

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

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

  .page-promotions__card-description {
    font-size: 0.9rem;
  }

  .page-promotions__card-list li {
    font-size: 0.85rem;
  }

  .page-promotions__terms-section .page-promotions__styled-list {
    margin-top: 20px;
  }

  .page-promotions__styled-list li {
    padding: 15px;
    font-size: 0.9rem;
  }

  .page-promotions__how-to-join-section {
    padding: 30px 0;
  }

  .page-promotions__steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-promotions__step-icon {
    font-size: 2.2rem;
  }

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

  .page-promotions__step-description {
    font-size: 0.9rem;
  }

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

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

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

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

  .page-promotions__conclusion-section {
    padding: 30px 0;
  }
}