.page-promo {
  color: #333333; /* Dark text for default (light) body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

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

.page-promo__section-title {
  font-size: 2.5em;
  color: #0A2463;
  text-align: center;
  margin-bottom: 20px;
  padding-top: 40px;
}

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

.page-promo__hero-section {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  padding: 0;
  margin-bottom: 60px;
}

.page-promo__hero-container {
  position: relative;
  width: 100%;
  height: auto;
}

.page-promo__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.7); /* Slightly darken image for text readability */
}

.page-promo__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 1;
  max-width: 90%;
}

.page-promo__hero-title {
  font-size: 3.5em;
  color: #E3B23C; /* Auxiliary color for highlight */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-promo__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-promo__hero-button {
  display: inline-block;
  background-color: #E3B23C; /* Auxiliary color for CTA */
  color: #0A2463;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-promo__hero-button:hover {
  background-color: #f5db9c; /* Lighter shade on hover */
  transform: translateY(-3px);
}

.page-promo__promotions-section {
  padding: 60px 0;
  background-color: #f9f9f9;
}

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

.page-promo__promo-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-promo__card-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
}

.page-promo__card-content {
  padding: 25px;
}

.page-promo__card-title {
  font-size: 1.8em;
  color: #0A2463;
  margin-bottom: 15px;
  min-height: 70px; /* Ensure consistent card title height */
}

.page-promo__card-text {
  font-size: 1em;
  color: #666666;
  margin-bottom: 25px;
  min-height: 120px; /* Ensure consistent card text height */
}

.page-promo__card-button {
  display: inline-block;
  background-color: #0A2463; /* Main color for CTA */
  color: #ffffff;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-promo__card-button:hover {
  background-color: #1c4dc3; /* Darker shade on hover */
}

.page-promo__how-to-claim-section {
  padding: 80px 0;
  background-color: #ffffff;
}

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

.page-promo__step-item {
  background-color: #f0f8ff; /* Light background for steps */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.page-promo__step-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  object-fit: contain;
}

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

.page-promo__step-text {
  color: #666666;
  font-size: 0.95em;
}

.page-promo__cta-wrapper {
  text-align: center;
  margin-top: 60px;
}

.page-promo__main-cta-button {
  display: inline-block;
  background-color: #E3B23C;
  color: #0A2463;
  padding: 18px 40px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 1.4em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-promo__main-cta-button:hover {
  background-color: #f5db9c;
  transform: translateY(-5px);
}

.page-promo__why-vipph-section {
  padding: 80px 0;
  background-color: #0A2463; /* Main brand color background */
  color: #ffffff;
}

.page-promo__why-vipph-section .page-promo__section-title,
.page-promo__why-vipph-section .page-promo__section-subtitle {
  color: #ffffff;
}

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

.page-promo__benefit-item {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-promo__benefit-title {
  font-size: 1.6em;
  color: #E3B23C;
  margin-bottom: 15px;
}

.page-promo__benefit-text {
  font-size: 1em;
  color: #f0f0f0;
}

.page-promo__faq-section {
  padding: 80px 0;
  background-color: #f9f9f9;
}

.page-promo__faq-accordion {
  max-width: 900px;
  margin: 40px auto 0 auto;
}

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

.page-promo__accordion-header {
  background-color: #E3B23C; /* Auxiliary color for header */
  color: #0A2463;
  padding: 18px 25px;
  width: 100%;
  text-align: left;
  border: none;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

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

.page-promo__accordion-content {
  padding: 0 25px;
  background-color: #ffffff;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-promo__accordion-content p {
  padding: 15px 0;
  color: #555555;
  font-size: 1em;
}

.page-promo__accordion-item.active .page-promo__accordion-content {
  max-height: 200px; /* Adjust as needed for content height */
  padding: 15px 25px;
}

.page-promo__cta-section {
  padding: 80px 0;
  background-color: #0A2463;
  color: #ffffff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-promo__cta-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.page-promo__cta-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.6); /* Darken image for text readability */
}

.page-promo__cta-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  max-width: 80%;
}

.page-promo__cta-title {
  font-size: 2.8em;
  color: #E3B23C;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-promo__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-promo__cta-button,
.page-promo__cta-download-button {
  display: inline-block;
  background-color: #E3B23C;
  color: #0A2463;
  padding: 15px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  margin: 0 10px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-promo__cta-button:hover,
.page-promo__cta-download-button:hover {
  background-color: #f5db9c;
  transform: translateY(-3px);
}

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

@media (max-width: 768px) {
  .page-promo__hero-title {
    font-size: 2.5em;
  }
  .page-promo__hero-description {
    font-size: 1em;
  }
  .page-promo__hero-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-promo__section-title {
    font-size: 1.8em;
  }
  .page-promo__section-subtitle {
    font-size: 1em;
    margin-bottom: 40px;
  }
  .page-promo__grid {
    grid-template-columns: 1fr;
  }
  .page-promo__card-image {
    height: 200px;
  }
  .page-promo__card-title {
    font-size: 1.5em;
  }
  .page-promo__card-text {
    min-height: auto;
  }
  .page-promo__step-item {
    padding: 20px;
  }
  .page-promo__step-icon {
    width: 80px;
    height: 80px;
  }
  .page-promo__step-title {
    font-size: 1.3em;
  }
  .page-promo__main-cta-button {
    padding: 15px 30px;
    font-size: 1.2em;
  }
  .page-promo__benefits-list {
    grid-template-columns: 1fr;
  }
  .page-promo__cta-title {
    font-size: 1.8em;
  }
  .page-promo__cta-description {
    font-size: 1em;
  }
  .page-promo__cta-button,
  .page-promo__cta-download-button {
    padding: 12px 25px;
    font-size: 1em;
    margin: 5px;
  }

  /* Ensure images in content area are responsive and do not overflow */
  .page-promo img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-promo__hero-title {
    font-size: 2em;
  }
  .page-promo__hero-description {
    font-size: 0.9em;
  }
  .page-promo__section-title {
    font-size: 1.5em;
  }
  .page-promo__section-subtitle {
    margin-bottom: 30px;
  }
  .page-promo__card-content {
    padding: 15px;
  }
  .page-promo__card-title {
    font-size: 1.3em;
    min-height: auto;
  }
  .page-promo__card-text {
    font-size: 0.9em;
  }
  .page-promo__steps-grid {
    gap: 20px;
  }
  .page-promo__step-title {
    font-size: 1.2em;
  }
  .page-promo__main-cta-button {
    font-size: 1em;
    padding: 12px 25px;
  }
  .page-promo__benefit-title {
    font-size: 1.4em;
  }
  .page-promo__faq-accordion {
    margin-top: 20px;
  }
  .page-promo__accordion-header {
    font-size: 1em;
    padding: 15px 20px;
  }
  .page-promo__accordion-content p {
    padding: 10px 0;
  }
  .page-promo__cta-title {
    font-size: 1.5em;
  }
  .page-promo__cta-description {
    font-size: 0.9em;
  }
  .page-promo__cta-button,
  .page-promo__cta-download-button {
    font-size: 0.9em;
    padding: 10px 20px;
  }
}