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

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

.page-promo__hero-section {
  position: relative;
  text-align: center;
  color: #ffffff;
  overflow: hidden;
  padding: 0; /* Hero section itself doesn't need padding-top as main handles offset */
}

.page-promo__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

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

.page-promo__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 800px;
  padding: 40px;
  background: rgba(0, 51, 102, 0.75); /* Main color with transparency */
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: 10;
}

.page-promo__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700; /* Accent color for title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

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

.page-promo__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Accent color for CTA */
  color: #003366; /* Main color for text */
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 2px solid #FFD700;
}

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

.page-promo__cta-button--large {
  padding: 18px 35px;
  font-size: 1.3em;
}

.page-promo__section-title {
  font-size: 2.5em;
  color: #003366;
  text-align: center;
  margin-bottom: 20px;
  margin-top: 60px;
}

.page-promo__section-intro {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
  color: #555555;
}

.page-promo__why-promos-section,
.page-promo__current-promos-section,
.page-promo__strategy-section,
.page-promo__how-to-claim-section,
.page-promo__faq-section,
.page-promo__final-cta-section {
  padding: 60px 0;
  background-color: #ffffff;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.page-promo__why-promos-section {
  background-color: #f0f5fa; /* Light blue background */
}

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

.page-promo__feature-card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-promo__feature-icon {
  width: 250px; /* Min 200px */
  height: 187px; /* Min 200px */
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-promo__feature-title {
  font-size: 1.8em;
  color: #003366;
  margin-bottom: 15px;
}

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

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

.page-promo__promo-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-promo__item-title {
  font-size: 2em;
  color: #003366;
  margin-bottom: 15px;
  line-height: 1.3;
}

.page-promo__item-title a {
  color: #003366;
  text-decoration: none;
}

.page-promo__item-title a:hover {
  color: #FFD700;
}

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

.page-promo__view-details-button {
  display: inline-block;
  background-color: #003366; /* Main color for button */
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  transition: background-color 0.3s ease;
  align-self: flex-start;
}

.page-promo__view-details-button:hover {
  background-color: #004d99;
}

.page-promo__all-promos-cta {
  text-align: center;
  margin-top: 50px;
}

.page-promo__strategy-section {
  background-color: #f0f5fa;
}

.page-promo__strategy-item {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.page-promo__strategy-item:last-child {
  margin-bottom: 0;
}

.page-promo__strategy-item--reverse {
  flex-direction: row-reverse;
}

.page-promo__strategy-item img {
  flex: 0 0 40%;
  max-width: 40%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-promo__strategy-content {
  flex: 1;
}

.page-promo__strategy-subtitle {
  font-size: 2em;
  color: #003366;
  margin-bottom: 15px;
}

.page-promo__strategy-description {
  font-size: 1.1em;
  color: #555555;
}

.page-promo__how-to-claim-section {
  background-color: #ffffff;
}

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

.page-promo__step-card {
  background-color: #f0f5fa;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  position: relative;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.page-promo__step-number {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  background-color: #FFD700;
  color: #003366;
  border-radius: 50%;
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 20px;
  border: 3px solid #003366;
}

.page-promo__step-title {
  font-size: 1.8em;
  color: #003366;
  margin-bottom: 15px;
}

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

.page-promo__step-description a {
  color: #003366;
  text-decoration: underline;
  font-weight: bold;
}

.page-promo__step-description a:hover {
  color: #FFD700;
}

.page-promo__claim-cta {
  text-align: center;
  margin-top: 50px;
}

.page-promo__faq-section {
  background-color: #f0f5fa;
}

.page-promo__faq-list {
  margin-top: 40px;
}

.page-promo__faq-item {
  background-color: #ffffff;
  padding: 25px 30px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.page-promo__faq-item:hover {
  background-color: #f5f5f5;
}

.page-promo__faq-question {
  font-size: 1.6em;
  color: #003366;
  margin: 0;
  position: relative;
  padding-right: 30px;
}

.page-promo__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  color: #FFD700;
  transition: transform 0.3s ease;
}

.page-promo__faq-item.active .page-promo__faq-question::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-promo__faq-answer {
  font-size: 1.1em;
  color: #666666;
  margin-top: 15px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out;
}

.page-promo__faq-item.active .page-promo__faq-answer {
  max-height: 200px; /* Adjust as needed */
  transition: max-height 0.5s ease-in;
}

.page-promo__final-cta-section {
  background-color: #003366; /* Main brand color */
  color: #ffffff;
  text-align: center;
  padding: 80px 0;
}

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

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

/* Responsive Design */
@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: 2.2em;
  }
  .page-promo__strategy-item {
    flex-direction: column;
    text-align: center;
  }
  .page-promo__strategy-item--reverse {
    flex-direction: column;
  }
  .page-promo__strategy-item img {
    max-width: 80%;
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .page-promo__hero-content {
    padding: 25px;
    max-width: 90%;
  }
  .page-promo__hero-title {
    font-size: 2em;
  }
  .page-promo__hero-description {
    font-size: 1em;
  }
  .page-promo__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-promo__cta-button--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }
  .page-promo__section-title {
    font-size: 1.8em;
  }
  .page-promo__section-intro {
    font-size: 1em;
  }
  .page-promo__feature-card,
  .page-promo__promo-item,
  .page-promo__step-card {
    padding: 25px;
  }
  .page-promo__feature-title,
  .page-promo__item-title,
  .page-promo__step-title,
  .page-promo__strategy-subtitle {
    font-size: 1.5em;
  }
  .page-promo__strategy-item img {
    max-width: 100%;
  }
  .page-promo__faq-question {
    font-size: 1.4em;
  }
  /* Ensure images in content area don't overflow */
  .page-promo img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-promo__hero-content {
    padding: 20px;
  }
  .page-promo__hero-title {
    font-size: 1.6em;
  }
  .page-promo__hero-description {
    font-size: 0.9em;
  }
  .page-promo__section-title {
    font-size: 1.5em;
  }
  .page-promo__section-intro {
    font-size: 0.9em;
  }
  .page-promo__feature-icon {
    width: 200px;
    height: 150px;
  }
  .page-promo__strategy-item img {
    width: 100%; /* Ensure mobile images are not smaller than 200px and responsive */
    height: auto;
  }
}