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

.page-promo__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: #0d0d0d; /* Dark background for hero section */
}

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

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

.page-promo__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.4); /* Semi-transparent overlay for text */
  color: #ffffff;
}

.page-promo__hero-title {
  font-size: 3.5em;
  color: #FFD700;
  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.4em;
  max-width: 800px;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-promo__hero-cta {
  display: inline-block;
  background-color: #FFD700; /* Gold */
  color: #8B0000; /* Deep Red */
  padding: 15px 40px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.3em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 2px solid #FFD700;
}

.page-promo__hero-cta:hover {
  background-color: #e6c200; /* Darker Gold */
  transform: translateY(-3px);
}

.page-promo__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: #ffffff;
}

.page-promo__section-title {
  font-size: 2.5em;
  color: #8B0000; /* Deep Red */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 10px;
}

.page-promo__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700; /* Gold accent */
  border-radius: 2px;
}

.page-promo__sub-title {
  font-size: 2em;
  color: #8B0000;
  margin-top: 50px;
  margin-bottom: 25px;
  border-left: 5px solid #FFD700;
  padding-left: 15px;
}

.page-promo__mini-title {
  font-size: 1.5em;
  color: #333333;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-promo__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #333333;
}

.page-promo__text-block strong {
  color: #8B0000; /* Highlight keyword */
}

.page-promo__image-text-layout {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
}

.page-promo__image-text-layout--reverse {
  flex-direction: row-reverse;
}

.page-promo__image-left, .page-promo__image-right {
  flex: 1;
  min-width: 200px; /* Min image size */
  max-width: 50%;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  object-fit: cover;
}

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

.page-promo__button {
  display: inline-block;
  background-color: #8B0000; /* Deep Red */
  color: #ffffff;
  padding: 12px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin-top: 20px;
  border: none;
}

.page-promo__button:hover {
  background-color: #a30000; /* Lighter Red */
  transform: translateY(-2px);
}

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

.page-promo__button--primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
}

.page-promo__button--secondary {
  background-color: #8B0000;
  color: #ffffff;
  border: 2px solid #8B0000;
}

.page-promo__button--secondary:hover {
  background-color: #a30000;
  border-color: #a30000;
}

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

.page-promo__card {
  background-color: #f9f9f9;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.page-promo__card-description {
  font-size: 1em;
  color: #555;
  margin-bottom: 20px;
}

.page-promo__card-cta {
  display: inline-block;
  background-color: #FFD700;
  color: #8B0000;
  padding: 10px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-promo__card-cta:hover {
  background-color: #e6c200;
}

.page-promo__promo-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 60px;
  justify-content: center;
}

.page-promo__promo-card {
  background-color: #f9f9f9;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  text-align: center;
  flex: 1 1 calc(50% - 30px); /* Two cards per row on desktop */
  max-width: calc(50% - 15px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.page-promo__promo-card-title {
  font-size: 1.4em;
  color: #8B0000;
  margin-bottom: 10px;
}

.page-promo__promo-card-description {
  font-size: 0.95em;
  color: #555;
  margin-bottom: 20px;
}

.page-promo__promo-card-cta {
  display: inline-block;
  background-color: #8B0000;
  color: #ffffff;
  padding: 8px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-promo__promo-card-cta:hover {
  background-color: #a30000;
}

.page-promo__list {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}

.page-promo__list-item {
  font-size: 1.1em;
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
  color: #333333;
}

.page-promo__list-item::before {
  content: '✓';
  color: #FFD700; /* Gold checkmark */
  font-weight: bold;
  position: absolute;
  left: 0;
  font-size: 1.2em;
}

.page-promo__faq-container {
  margin-top: 40px;
  margin-bottom: 60px;
}

.page-promo__faq-item {
  background-color: #f0f0f0;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-promo__faq-question {
  font-size: 1.3em;
  color: #8B0000;
  margin-bottom: 10px;
}

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

.page-promo__cta-buttons {
  text-align: center;
  margin-top: 50px;
  margin-bottom: 80px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

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

.page-promo__detail-item {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promo__detail-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.page-promo__detail-title {
  font-size: 1.5em;
  color: #8B0000;
  margin-bottom: 15px;
}

.page-promo__detail-title a {
  color: #8B0000;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

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

.page-promo__detail-cta {
  display: inline-block;
  background-color: #FFD700;
  color: #8B0000;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-promo__detail-cta:hover {
  background-color: #e6c200;
}

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

@media (max-width: 768px) {
  .page-promo__hero-title {
    font-size: 2.2em;
  }
  .page-promo__hero-description {
    font-size: 1em;
  }
  .page-promo__hero-cta {
    padding: 12px 30px;
    font-size: 1.1em;
  }
  .page-promo__section-title {
    font-size: 2em;
  }
  .page-promo__sub-title {
    font-size: 1.6em;
  }
  .page-promo__image-text-layout {
    flex-direction: column;
    gap: 20px;
  }
  .page-promo__image-text-layout--reverse {
    flex-direction: column;
  }
  .page-promo__image-left, .page-promo__image-right {
    max-width: 100%;
    width: 100%;
  }
  .page-promo__grid-layout {
    grid-template-columns: 1fr;
  }
  .page-promo__promo-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
  .page-promo__promo-image {
    height: 200px;
  }
  .page-promo__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-promo__button {
    width: 100%;
    box-sizing: border-box;
  }
  .page-promo__detail-list {
    grid-template-columns: 1fr;
  }
  /* Ensure images in content area do not cause horizontal scroll */
  .page-promo img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-promo__hero-title {
    font-size: 1.8em;
  }
  .page-promo__hero-description {
    font-size: 0.9em;
  }
  .page-promo__section-title {
    font-size: 1.8em;
  }
  .page-promo__sub-title {
    font-size: 1.4em;
  }
  .page-promo__card-title {
    font-size: 1.4em;
  }
  .page-promo__promo-card-title {
    font-size: 1.2em;
  }
}