.page-promo {
  color: #333333; /* Dark text for default white body background */
}

.page-promo__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: #0056b3; /* Darker blue background for hero section */
  padding-top: var(--header-offset, 120px); /* Account for fixed header */
}

.page-promo__hero-container {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
  color: #ffffff;
}

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

.page-promo__hero-content {
  z-index: 1;
  position: relative;
  max-width: 800px;
}

.page-promo__hero-title {
  font-size: 3.2em;
  margin-bottom: 15px;
  color: #ffc107; /* Auxiliary color for emphasis */
  line-height: 1.2;
}

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

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

.page-promo__button {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  white-space: nowrap;
  font-size: 1.1em;
}

.page-promo__button--primary {
  background-color: #ffc107;
  color: #000000;
  border: 2px solid #ffc107;
}

.page-promo__button--primary:hover {
  background-color: #e0a800;
  transform: translateY(-2px);
}

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

.page-promo__button--secondary:hover {
  background-color: #ffc107;
  color: #000000;
  transform: translateY(-2px);
}

.page-promo__section {
  padding: 60px 20px;
  background-color: #f8f9fa;
  border-bottom: 1px solid #e9ecef;
}

.page-promo__section:nth-of-type(odd) {
  background-color: #ffffff;
}

.page-promo__container {
  max-width: 1200px;
  margin: 0 auto;
}

.page-promo__section-title {
  font-size: 2.5em;
  color: #007bff;
  text-align: center;
  margin-bottom: 20px;
  position: relative;
}

.page-promo__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #ffc107;
  margin: 10px auto 0;
  border-radius: 2px;
}

.page-promo__section-intro {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.6;
  color: #555555;
}

.page-promo__grid {
  display: grid;
  gap: 30px;
}

.page-promo__grid--2-cols {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.page-promo__grid--3-cols {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.page-promo__card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 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;
  min-height: 400px; /* Ensure cards have a minimum height */
}

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

.page-promo__card-image {
  width: 100%;
  max-width: 400px; /* Constrain image width within card */
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
}

.page-promo__card-title {
  font-size: 1.8em;
  color: #007bff;
  margin-bottom: 15px;
  line-height: 1.3;
}

.page-promo__card-text {
  font-size: 1em;
  color: #666666;
  margin-bottom: 25px;
  line-height: 1.6;
  flex-grow: 1;
}

.page-promo__vip-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  justify-content: center;
  margin-top: 40px;
}

.page-promo__vip-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  min-height: 200px;
}

.page-promo__vip-list {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
  max-width: 500px;
}

.page-promo__vip-item {
  background-color: #e9f5ff;
  border-left: 5px solid #007bff;
  padding: 15px 20px;
  margin-bottom: 10px;
  font-size: 1.1em;
  color: #333333;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.page-promo__vip-item:hover {
  background-color: #d0e8ff;
}

.page-promo__call-to-action {
  text-align: center;
  margin-top: 50px;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

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

.page-promo__terms-item {
  background-color: #f0f8ff;
  border-left: 4px solid #007bff;
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  line-height: 1.6;
  color: #444444;
}

.page-promo__terms-item strong {
  color: #0056b3;
}

.page-promo__section-text {
  font-size: 1em;
  line-height: 1.6;
  color: #555555;
  text-align: center;
  max-width: 900px;
  margin: 30px auto;
}

.page-promo__app-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  justify-content: center;
  margin-top: 40px;
}

.page-promo__app-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  object-fit: contain;
  min-width: 200px;
  min-height: 200px;
}

.page-promo__app-info {
  flex: 1;
  max-width: 500px;
  text-align: center;
}

.page-promo__app-text {
  font-size: 1.1em;
  line-height: 1.6;
  color: #555555;
  margin-bottom: 25px;
}

.page-promo__app-small-text {
  font-size: 0.9em;
  color: #777777;
  margin-top: 15px;
}

.page-promo__faq-item {
  background-color: #ffffff;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 20px;
  transition: box-shadow 0.3s ease;
}

.page-promo__faq-item:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-promo__faq-question {
  font-size: 1.3em;
  color: #007bff;
  margin-bottom: 10px;
}

.page-promo__faq-answer {
  font-size: 1em;
  color: #666666;
  line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-promo__hero-title {
    font-size: 2.8em;
  }

  .page-promo__hero-description {
    font-size: 1.1em;
  }

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

@media (max-width: 768px) {
  .page-promo__hero-title {
    font-size: 2.2em;
  }

  .page-promo__hero-description {
    font-size: 1em;
  }

  .page-promo__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-promo__button {
    width: 100%;
    max-width: 300px;
  }

  .page-promo__grid--2-cols, .page-promo__grid--3-cols {
    grid-template-columns: 1fr;
  }

  .page-promo__card {
    padding: 25px;
  }

  .page-promo__vip-content, .page-promo__app-content {
    flex-direction: column;
    text-align: center;
  }

  .page-promo__vip-image, .page-promo__app-image {
    max-width: 100%;
  }

  .page-promo__vip-list {
    max-width: 100%;
  }

  .page-promo__call-to-action {
    flex-direction: column;
    gap: 15px;
  }

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

  .page-promo__card-image, .page-promo__vip-image, .page-promo__app-image, .page-promo__hero-image {
    max-width: 100%;
    height: auto;
    min-width: 200px;
    min-height: 200px;
  }

  /* Ensure all images within .page-promo are responsive and don't overflow */
  .page-promo img {
    max-width: 100% !important;
    height: auto !important;
  }
}

@media (max-width: 480px) {
  .page-promo__hero-title {
    font-size: 1.8em;
  }

  .page-promo__section-title {
    font-size: 1.8em;
  }

  .page-promo__card-title {
    font-size: 1.5em;
  }

  .page-promo__faq-question {
    font-size: 1.1em;
  }
}