.page-promo {
  color: #333333; /* Dark text on default light body background */
  padding-top: var(--header-offset, 120px); /* Ensures content starts below fixed header */
}

.page-promo__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 20px;
  background-color: #0A2463; /* Primary dark blue background for hero */
  color: #ffffff; /* White text on dark blue background */
  position: relative;
  overflow: hidden;
}

.page-promo__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.page-promo__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3; /* Subtle background effect */
}

.page-promo__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.page-promo__main-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #E3B505; /* Gold accent for main title */
  line-height: 1.2;
}

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

.page-promo__hero-cta-button,
.page-promo__promo-card-button,
.page-promo__vip-cta-button,
.page-promo__step-button,
.page-promo__cta-button {
  display: inline-block;
  background-color: #E3B505; /* Gold button background */
  color: #0A2463; /* Dark blue text on gold button */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-promo__hero-cta-button:hover,
.page-promo__promo-card-button:hover,
.page-promo__vip-cta-button:hover,
.page-promo__step-button:hover,
.page-promo__cta-button:hover {
  background-color: #f5db9c; /* Lighter gold on hover */
  transform: translateY(-2px);
}

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

.page-promo__section-title {
  font-size: 2.5em;
  color: #0A2463; /* Primary dark blue for section titles */
  text-align: center;
  margin-bottom: 25px;
  position: relative;
}

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

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

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

.page-promo__promo-card,
.page-promo__step-card {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-promo__promo-card:hover,
.page-promo__step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-promo__promo-card-image,
.page-promo__vip-feature-icon {
  width: 100%; /* Ensures image fits card width */
  height: auto;
  max-width: 400px; /* Example max width for card images */
  max-height: 300px; /* Example max height for card images */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 25px;
  min-width: 200px; /* Minimum size requirement */
  min-height: 200px; /* Minimum size requirement */
}

.page-promo__vip-feature-icon {
    max-width: 200px;
    max-height: 200px;
    width: 200px;
    height: 200px;
    border-radius: 50%; /* Circular icons */
    object-fit: contain;
    background-color: #f9f9f9;
    padding: 15px;
}

.page-promo__promo-card-title,
.page-promo__vip-feature-title,
.page-promo__step-title {
  font-size: 1.6em;
  color: #0A2463;
  margin-bottom: 15px;
}

.page-promo__promo-card-description,
.page-promo__vip-feature-description,
.page-promo__step-description {
  font-size: 1em;
  line-height: 1.6;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-promo__vip-section {
  background-color: #f8f8f8;
  padding: 80px 20px;
  margin: 60px auto;
  border-radius: 10px;
}

.page-promo__vip-cta-button {
  margin-top: 40px;
}

.page-promo__advantages-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-promo__advantage-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.03);
  text-align: center;
}

.page-promo__advantage-title {
  font-size: 1.4em;
  color: #0A2463;
  margin-bottom: 10px;
}

.page-promo__advantage-description {
  font-size: 0.95em;
  line-height: 1.5;
}

.page-promo__terms-conditions-section {
  padding: 60px 20px;
  margin: 60px auto;
  background-color: #fdfdfd;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

.page-promo__subsection-title {
    font-size: 1.8em;
    color: #0A2463;
    margin-top: 40px;
    margin-bottom: 15px;
    border-bottom: 2px solid #E3B505;
    padding-bottom: 8px;
}

.page-promo__paragraph {
    font-size: 1em;
    line-height: 1.7;
    margin-bottom: 20px;
}

.page-promo__cta-section {
  text-align: center;
  padding: 80px 20px;
  background-color: #0A2463;
  color: #ffffff;
  border-radius: 10px;
  margin-bottom: 60px;
}

.page-promo__cta-section .page-promo__section-title {
  color: #E3B505;
}

.page-promo__cta-section .page-promo__section-intro {
  color: #f0f0f0;
  margin-bottom: 40px;
}

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

.page-promo__cta-button--primary {
  background-color: #E3B505;
  color: #0A2463;
}

.page-promo__cta-button--secondary {
  background-color: transparent;
  border: 2px solid #E3B505;
  color: #E3B505;
}

.page-promo__cta-button--secondary:hover {
  background-color: #E3B505;
  color: #0A2463;
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promo__main-title {
    font-size: 2.8em;
  }
  .page-promo__hero-description {
    font-size: 1.2em;
  }
  .page-promo__section-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-promo {
    padding-top: var(--header-offset, 120px); /* Ensure mobile header offset */
    overflow-x: hidden; /* Prevent horizontal scroll */
  }
  .page-promo__hero-section {
    padding: 40px 15px;
  }
  .page-promo__main-title {
    font-size: 2.2em;
    margin-bottom: 15px;
  }
  .page-promo__hero-description {
    font-size: 1em;
    margin-bottom: 30px;
  }
  .page-promo__hero-cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-promo__content-section {
    margin: 40px auto;
    padding: 0 15px;
  }
  .page-promo__section-title {
    font-size: 1.8em;
    margin-bottom: 20px;
  }
  .page-promo__section-intro {
    font-size: 0.95em;
    margin-bottom: 30px;
  }
  .page-promo__promo-grid,
  .page-promo__vip-features,
  .page-promo__steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-promo__promo-card,
  .page-promo__step-card {
    padding: 25px;
  }
  .page-promo__promo-card-image,
  .page-promo__vip-feature-icon {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Enforce minimum size on mobile */
    min-height: 200px; /* Enforce minimum size on mobile */
  }
  .page-promo__promo-card-title,
  .page-promo__vip-feature-title,
  .page-promo__step-title {
    font-size: 1.4em;
  }
  .page-promo__advantages-list {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
  }
  .page-promo__subsection-title {
    font-size: 1.5em;
    margin-top: 30px;
  }
  .page-promo__cta-section {
    padding: 60px 15px;
    margin-bottom: 40px;
  }
  .page-promo__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-promo__cta-button {
    width: 100%;
  }
  /* Ensure all content area images are responsive and not too small */
  .page-promo img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Crucial for small screen image display */
    min-height: 200px; /* Crucial for small screen image display */
    object-fit: cover; /* Maintain aspect ratio without stretching */
  }
}

@media (max-width: 480px) {
  .page-promo__main-title {
    font-size: 1.8em;
  }
  .page-promo__section-title {
    font-size: 1.6em;
  }
  .page-promo__hero-cta-button {
    font-size: 0.9em;
    padding: 10px 20px;
  }
}