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

.page-promo__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
  background-color: #0A2463;
}

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

.page-promo__hero-image {
  width: 100%;
  height: auto;
  display: block;
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-promo__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #FFFFFF;
  max-width: 80%;
  background: rgba(0, 0, 0, 0.6);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.page-promo__hero-title {
  font-size: 3em;
  margin-bottom: 15px;
  color: #FFD700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-promo__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #F0F0F0;
}

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

.page-promo__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  white-space: nowrap;
}

.page-promo__button--primary {
  background-color: #FFD700;
  color: #0A2463;
  border: 2px solid #FFD700;
}

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

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

.page-promo__button--secondary:hover {
  background-color: rgba(255, 215, 0, 0.1);
  transform: translateY(-2px);
}

.page-promo__overview-section,
.page-promo__claim-section,
.page-promo__why-choose-section,
.page-promo__featured-details-section,
.page-promo__faq-section,
.page-promo__final-cta-section {
  max-width: 1200px;
  margin: 40px auto;
  padding: 40px 20px;
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-promo__section-title {
  font-size: 2.5em;
  color: #0A2463;
  text-align: center;
  margin-bottom: 25px;
  border-bottom: 3px solid #FFD700;
  padding-bottom: 10px;
  display: inline-block;
  width: auto;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.page-promo__section-description {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #555555;
}

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

.page-promo__promo-card {
  background-color: #F8F8F8;
  border: 1px solid #EEEEEE;
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-promo__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.page-promo__card-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px; /* Ensure min size */
  min-height: 200px; /* Ensure min size */
}

.page-promo__card-title {
  font-size: 1.6em;
  color: #0A2463;
  margin-bottom: 15px;
}

.page-promo__card-title a {
  color: #0A2463;
  text-decoration: none;
}

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

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

.page-promo__button--card {
  background-color: #0A2463;
  color: #FFFFFF;
  border: 2px solid #0A2463;
  padding: 10px 20px;
  margin-top: auto; /* Pushes button to the bottom */
}

.page-promo__button--card:hover {
  background-color: #1A3E8A;
  border-color: #1A3E8A;
}

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

.page-promo__step-card {
  background-color: #F8F8F8;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.07);
  position: relative;
  overflow: hidden;
}

.page-promo__step-number {
  position: absolute;
  top: -15px;
  left: -15px;
  background-color: #FFD700;
  color: #0A2463;
  font-size: 2.5em;
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 0 0 10px 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-promo__step-title {
  font-size: 1.8em;
  color: #0A2463;
  margin-top: 20px;
  margin-bottom: 15px;
}

.page-promo__step-description {
  font-size: 1em;
  color: #666666;
}

.page-promo__cta-bottom {
  text-align: center;
  margin-top: 50px;
}

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

.page-promo__feature-item {
  background-color: #F8F8F8;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  text-align: center;
}

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

.page-promo__feature-text {
  font-size: 1em;
  color: #666666;
}

.page-promo__details-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}

.page-promo__detail-card {
  background-color: #F8F8F8;
  border: 1px solid #EEEEEE;
  border-radius: 8px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

.page-promo__detail-title a {
  color: #0A2463;
  text-decoration: none;
}

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

.page-promo__detail-description {
  font-size: 1em;
  color: #666666;
  margin-bottom: 15px;
}

.page-promo__button--details {
  background-color: #FFD700;
  color: #0A2463;
  border: 2px solid #FFD700;
  padding: 8px 18px;
}

.page-promo__button--details:hover {
  background-color: #E0B800;
}

.page-promo__faq-accordion {
  margin-top: 30px;
}

.page-promo__accordion-item {
  margin-bottom: 15px;
  border: 1px solid #EEEEEE;
  border-radius: 8px;
  overflow: hidden;
}

.page-promo__accordion-header {
  background-color: #0A2463;
  color: #FFFFFF;
  padding: 15px 20px;
  width: 100%;
  text-align: left;
  border: none;
  cursor: pointer;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-promo__accordion-header:hover {
  background-color: #1A3E8A;
}

.page-promo__accordion-content {
  padding: 15px 20px;
  background-color: #FDFDFD;
  border-top: 1px solid #EEEEEE;
  display: none;
  font-size: 1em;
  color: #555555;
}

.page-promo__accordion-content p {
  margin: 0;
}

.page-promo__final-cta-section {
  text-align: center;
  background-color: #0A2463;
  color: #FFFFFF;
  padding: 60px 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-promo__final-cta-section .page-promo__section-title {
  color: #FFD700;
  border-bottom-color: #FFD700;
}

.page-promo__final-cta-section .page-promo__section-description {
  color: #F0F0F0;
  margin-bottom: 30px;
}

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

@media (max-width: 768px) {
  .page-promo__hero-section {
    padding-top: var(--header-offset, 80px);
  }
  .page-promo__hero-content {
    max-width: 90%;
    padding: 20px;
  }
  .page-promo__hero-title {
    font-size: 2em;
  }
  .page-promo__hero-description {
    font-size: 1em;
  }
  .page-promo__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-promo__promo-grid,
  .page-promo__steps-container,
  .page-promo__features-grid {
    grid-template-columns: 1fr;
  }
  .page-promo__section-title {
    font-size: 1.8em;
    padding-bottom: 8px;
  }
  .page-promo__section-description {
    font-size: 0.95em;
  }
  .page-promo__card-image,
  .page-promo__promo-card img, /* Specific selector for image sizing */
  .page-promo__step-card img, /* Specific selector for image sizing */
  .page-promo__feature-item img, /* Specific selector for image sizing */
  .page-promo__detail-card img, /* Specific selector for image sizing */
  .page-promo__faq-accordion img, /* Specific selector for image sizing */
  .page-promo__final-cta-section img, /* Specific selector for image sizing */
  .page-promo__hero-section img {
    max-width: 100% !important;
    height: auto !important;
    min-width: 200px !important;
    min-height: 200px !important;
  }
  .page-promo {
    overflow-x: hidden;
  }
}

@media (max-width: 480px) {
  .page-promo__hero-title {
    font-size: 1.5em;
  }
  .page-promo__hero-description {
    font-size: 0.9em;
  }
  .page-promo__button {
    padding: 10px 20px;
  }
  .page-promo__section-title {
    font-size: 1.5em;
  }
  .page-promo__promo-card,
  .page-promo__step-card,
  .page-promo__feature-item,
  .page-promo__detail-card {
    padding: 20px;
  }
  .page-promo__step-number {
    font-size: 2em;
  }
  .page-promo__accordion-header {
    font-size: 1em;
    padding: 12px 15px;
  }
  .page-promo__accordion-content {
    padding: 12px 15px;
  }
}