.page-promo {
  color: #ffffff; /* Light text for dark body background */
  background-color: transparent; /* Body background is #000 from shared.css */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

/* Ensure header offset for desktop and mobile */
.page-promo__hero-section {
  padding-top: var(--header-offset, 120px); /* Apply header offset */
  background: linear-gradient(135deg, rgba(139, 0, 0, 0.8) 0%, rgba(255, 215, 0, 0.2) 100%);
  text-align: center;
  padding-bottom: 60px;
  position: relative;
  overflow: hidden;
}

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

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

.page-promo__hero-description {
  font-size: 1.3em;
  color: #f0f0f0;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-promo__hero-button {
  display: inline-block;
  background-color: #FFD700; /* Gold primary color */
  color: #8B0000; /* Dark red secondary color */
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

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

.page-promo__hero-image {
  width: 100%;
  height: auto;
  display: block;
  margin-top: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  min-width: 200px; /* Ensure min size for content images */
  min-height: 200px; /* Ensure min size for content images */
}

.page-promo__section-title {
  font-size: 2.8em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  padding-top: 60px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

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

.page-promo__features-section {
  padding: 60px 0;
  background-color: rgba(255, 255, 255, 0.05); /* Slightly lighter background for contrast */
}

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

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

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

.page-promo__feature-image {
  width: 100%;
  height: auto;
  max-width: 400px;
  border-radius: 10px;
  margin-bottom: 20px;
  min-width: 200px; /* Ensure min size for content images */
  min-height: 200px; /* Ensure min size for content images */
}

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

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

.page-promo__current-offers-section {
  padding: 80px 0;
}

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

.page-promo__offer-card {
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promo__offer-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.6);
}

.page-promo__offer-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  min-width: 200px; /* Ensure min size for content images */
  min-height: 200px; /* Ensure min size for content images */
}

.page-promo__offer-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-promo__offer-title {
  font-size: 2em;
  color: #FFD700;
  margin-bottom: 15px;
  line-height: 1.2;
}

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

.page-promo__offer-details {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.page-promo__offer-details li {
  color: #FFD700;
  margin-bottom: 8px;
  font-size: 0.95em;
}

.page-promo__offer-details li::before {
  content: '★';
  color: #8B0000;
  margin-right: 10px;
}

.page-promo__offer-button {
  display: inline-block;
  background-color: #8B0000; /* Dark red secondary color */
  color: #FFD700; /* Gold primary color */
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  text-align: center;
  transition: background-color 0.3s ease, transform 0.3s ease;
  align-self: flex-start; /* Align button to start */
}

.page-promo__offer-button:hover {
  background-color: #a30000;
  transform: translateY(-2px);
}

.page-promo__terms-section {
  padding: 80px 0;
  background-color: rgba(255, 255, 255, 0.03);
}

.page-promo__terms-intro {
  font-size: 1.1em;
  color: #e0e0e0;
  text-align: center;
  margin-bottom: 50px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-promo__terms-content {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-promo__terms-subtitle {
  font-size: 1.8em;
  color: #FFD700;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-promo__terms-text {
  font-size: 1em;
  color: #ccc;
  margin-bottom: 20px;
}

.page-promo__action-text {
  font-size: 1.2em;
  color: #FFD700;
  text-align: center;
  margin-top: 40px;
  margin-bottom: 30px;
  font-weight: bold;
}

.page-promo__main-cta-button {
  display: block;
  width: fit-content;
  margin: 0 auto;
  background-color: #FFD700;
  color: #8B0000;
  padding: 18px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.3em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 7px 20px rgba(0, 0, 0, 0.4);
}

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

.page-promo__faq-section {
  padding: 80px 0;
}

.page-promo__faq-item {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
}

.page-promo__faq-question {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-promo__faq-answer {
  font-size: 1em;
  color: #ccc;
}

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

@media (max-width: 768px) {
  .page-promo__hero-section {
    padding-top: var(--header-offset, 80px); /* Adjust for smaller header on mobile */
    padding-bottom: 40px;
  }
  .page-promo__hero-title {
    font-size: 2.5em;
  }
  .page-promo__hero-description {
    font-size: 1.1em;
  }
  .page-promo__hero-button {
    font-size: 1.1em;
    padding: 12px 25px;
  }
  .page-promo__section-title {
    font-size: 2em;
    margin-bottom: 30px;
    padding-top: 40px;
  }
  .page-promo__section-intro {
    font-size: 1em;
    margin-bottom: 40px;
  }
  .page-promo__features-grid, .page-promo__offers-grid {
    grid-template-columns: 1fr;
  }
  .page-promo__offer-image {
    height: 200px;
  }
  .page-promo__offer-title {
    font-size: 1.6em;
  }
  .page-promo__offer-button {
    font-size: 1em;
    padding: 10px 20px;
  }
  .page-promo__terms-content {
    padding: 30px 20px;
  }
  .page-promo__terms-subtitle {
    font-size: 1.5em;
  }
  .page-promo__main-cta-button {
    font-size: 1.1em;
    padding: 15px 30px;
  }
  .page-promo__faq-question {
    font-size: 1.3em;
  }
  /* Ensure content images do not overflow on mobile */
  .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.95em;
  }
  .page-promo__section-title {
    font-size: 1.8em;
  }
  .page-promo__offer-title {
    font-size: 1.4em;
  }
  .page-promo__terms-subtitle {
    font-size: 1.3em;
  }
  .page-promo__faq-question {
    font-size: 1.1em;
  }
}