.page-promotions {
  font-family: 'Arial', sans-serif;
  color: #404040; /* Default text color for light background */
  background-color: #F3F3F3; /* Body background color */
}

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

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

.page-promotions__hero-content {
  padding: 40px 20px;
  max-width: 900px;
  margin-top: -100px; /* Adjust to slightly overlap with image for visual flow */
  position: relative;
  z-index: 1;
  background-color: rgba(255, 255, 255, 0.95); /* Semi-transparent white background for readability */
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-promotions__main-title {
  font-size: clamp(2em, 4vw, 3em);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
  color: #025BE8;
}

.page-promotions__hero-description {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 30px;
}

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

.page-promotions__btn-primary,
.page-promotions__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-promotions__btn-primary {
  background-color: #1266EC; /* Register color */
  color: #FFFFFF;
  border: 2px solid #1266EC;
}

.page-promotions__btn-primary:hover {
  background-color: #025BE8;
  border-color: #025BE8;
  transform: translateY(-2px);
}

.page-promotions__btn-secondary {
  background-color: #E5EEFD; /* Login color */
  color: #025BE8;
  border: 2px solid #025BE8;
}

.page-promotions__btn-secondary:hover {
  background-color: #025BE8;
  color: #FFFFFF;
  transform: translateY(-2px);
}

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

.page-promotions__section-title {
  font-size: 2.2em;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #025BE8;
}

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

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

.page-promotions__card:hover {
  transform: translateY(-5px);
}

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

.page-promotions__card-title {
  font-size: 1.5em;
  font-weight: 600;
  margin-bottom: 15px;
  color: #025BE8;
}

.page-promotions__card-text {
  font-size: 1em;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-promotions__content-block {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 40px;
}

.page-promotions__content-image {
  flex: 1;
  max-width: 50%;
  border-radius: 15px;
  object-fit: cover;
  display: block;
}

.page-promotions__text-content {
  flex: 1;
  max-width: 50%;
}

.page-promotions__vip-benefits-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.page-promotions__vip-benefits-list li {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="%23025BE8" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"></polyline></svg>') no-repeat left center;
  background-size: 20px;
  padding-left: 30px;
  margin-bottom: 10px;
  line-height: 1.5;
  color: #404040;
}

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

.page-promotions__step-card {
  background-color: #ffffff;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-promotions__step-title {
  font-size: 1.3em;
  font-weight: 600;
  margin-bottom: 15px;
  color: #025BE8;
}

.page-promotions__step-card p {
  margin-bottom: 20px;
  line-height: 1.6;
  flex-grow: 1;
}

.page-promotions__step-card a {
  font-size: 0.95em;
  padding: 10px 20px;
}

.page-promotions__terms-list {
  list-style: disc inside;
  margin-top: 20px;
  line-height: 1.8;
  padding-left: 20px;
}

.page-promotions__terms-list strong {
  color: #025BE8;
}

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

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

.page-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.1em;
  font-weight: 600;
  color: #404040;
  cursor: pointer;
  background-color: #f9f9f9;
  border-bottom: 1px solid #eee;
  transition: background-color 0.3s ease;
}

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

.page-promotions__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: #025BE8;
  transition: transform 0.3s ease;
}

.page-promotions__faq-item[open] .page-promotions__faq-toggle {
  transform: rotate(45deg);
}

.page-promotions__faq-answer {
  padding: 15px 20px 20px;
  font-size: 1em;
  line-height: 1.6;
  color: #666;
}

.page-promotions__cta-bottom {
  text-align: center;
  padding-top: 40px;
  padding-bottom: 80px;
}

.page-promotions__cta-text {
  font-size: 1.2em;
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

  .page-promotions__section-title {
    font-size: 2em;
  }

  .page-promotions__content-block {
    flex-direction: column;
    text-align: center;
  }

  .page-promotions__content-image,
  .page-promotions__text-content {
    max-width: 100%;
  }

  .page-promotions__content-image {
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .page-promotions__hero-content {
    margin-top: -60px;
    padding: 25px 15px;
    border-radius: 10px;
  }

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

  .page-promotions__hero-description {
    font-size: 1em;
    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 {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

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

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

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

  .page-promotions__card {
    padding: 20px;
  }

  .page-promotions__card-image {
    max-height: 200px;
    margin-bottom: 15px;
  }

  .page-promotions__card-title {
    font-size: 1.3em;
  }

  .page-promotions__content-block {
    gap: 20px;
  }

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

  .page-promotions__step-card {
    padding: 25px;
  }

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

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

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

  .page-promotions img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !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__cta-bottom .page-promotions__cta-buttons {
    padding: 0;
  }
}