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

.page-promo__hero-section {
  background-color: #FFD700; /* Primary color background */
  color: #8B0000; /* Secondary color for text */
  padding: 80px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.page-promo__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin-bottom: 40px;
}

.page-promo__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #8B0000; /* Secondary color for title */
  font-weight: bold;
  line-height: 1.2;
}

.page-promo__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #333333; /* Darker text for readability */
}

.page-promo__hero-button {
  display: inline-block;
  background-color: #8B0000; /* Secondary color for button */
  color: #FFD700; /* Primary color for button text */
  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;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-promo__hero-button:hover {
  background-color: #a00000; /* Slightly darker red on hover */
  transform: translateY(-3px);
}

.page-promo__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.2;
  overflow: hidden;
}

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

.page-promo__section {
  padding: 60px 20px;
  text-align: center;
}

.page-promo__section:nth-of-type(even) {
  background-color: #f8f8f8;
}

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

.page-promo__section-title {
  font-size: 2.5em;
  color: #8B0000; /* Secondary color */
  margin-bottom: 30px;
  font-weight: bold;
}

.page-promo__section-text {
  font-size: 1.1em;
  color: #333333;
  max-width: 800px;
  margin: 0 auto 40px auto;
  line-height: 1.8;
}

.page-promo__section-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin-top: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  min-width: 200px;
  min-height: 200px;
}

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

.page-promo__promo-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: left;
  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(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

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

.page-promo__card-title {
  font-size: 1.8em;
  color: #8B0000; /* Secondary color */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promo__card-description {
  font-size: 1em;
  color: #555555;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-promo__card-button {
  display: inline-block;
  background-color: #FFD700; /* Primary color for button */
  color: #8B0000; /* Secondary color for button text */
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  align-self: flex-start;
}

.page-promo__card-button:hover {
  background-color: #e6c200; /* Slightly darker gold on hover */
  transform: translateY(-2px);
}

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

.page-promo__step-item {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 30px;
  position: relative;
  padding-top: 60px; /* Space for step number */
}

.page-promo__step-number {
  position: absolute;
  top: 15px;
  left: 30px;
  background-color: #8B0000; /* Secondary color */
  color: #FFD700; /* Primary color */
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  font-weight: bold;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

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

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

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

.page-promo__step-button:hover {
  background-color: #e6c200;
}

.page-promo__steps-image {
  margin-top: 60px;
}

.page-promo__button--secondary {
  background-color: #8B0000;
  color: #FFD700;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease;
  display: inline-block;
  margin-top: 30px;
}

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

.page-promo__faq-accordion {
  max-width: 900px;
  margin: 50px auto 0 auto;
  text-align: left;
}

.page-promo__faq-item {
  background-color: #ffffff;
  border: 1px solid #eee;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-promo__faq-question {
  background-color: #FFD700; /* Primary color */
  color: #8B0000; /* Secondary color */
  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;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-promo__faq-question::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

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

.page-promo__faq-question:hover {
  background-color: #e6c200;
}

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

.page-promo__faq-answer.active {
  max-height: 300px; /* Adjust as needed */
  padding: 15px 25px 25px 25px;
}

.page-promo__faq-answer p {
  color: #555555;
  font-size: 1em;
  margin: 0;
}

.page-promo__faq-image {
  margin-top: 60px;
}

.page-promo__cta-section {
  background-color: #8B0000; /* Secondary color background */
  color: #FFD700; /* Primary color for text */
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.page-promo__cta-section .page-promo__container {
  position: relative;
  z-index: 2;
}

.page-promo__cta-section .page-promo__section-title {
  color: #FFD700; /* Primary color for title */
}

.page-promo__cta-section .page-promo__section-text {
  color: #f0f0f0;
}

.page-promo__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Primary color for button */
  color: #8B0000; /* Secondary color for button text */
  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;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
  margin-top: 40px;
}

.page-promo__cta-button:hover {
  background-color: #e6c200; /* Slightly darker gold on hover */
  transform: translateY(-4px);
}

.page-promo__cta-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.15;
  display: block;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promo__hero-title {
    font-size: 2.8em;
  }
  .page-promo__section-title {
    font-size: 2.2em;
  }
  .page-promo__card-title {
    font-size: 1.6em;
  }
}

@media (max-width: 768px) {
  .page-promo__hero-section {
    padding: 60px 15px;
  }
  .page-promo__hero-title {
    font-size: 2.5em;
  }
  .page-promo__hero-description {
    font-size: 1.1em;
  }
  .page-promo__hero-button {
    padding: 12px 25px;
    font-size: 1.1em;
  }
  .page-promo__section {
    padding: 40px 15px;
  }
  .page-promo__section-title {
    font-size: 2em;
  }
  .page-promo__section-text {
    font-size: 1em;
    margin-bottom: 30px;
  }
  .page-promo__promo-grid {
    grid-template-columns: 1fr;
  }
  .page-promo__card-title {
    font-size: 1.5em;
  }
  .page-promo__card-image {
    height: 180px;
  }
  .page-promo__steps-grid {
    grid-template-columns: 1fr;
  }
  .page-promo__step-item {
    padding-top: 50px;
  }
  .page-promo__step-number {
    width: 35px;
    height: 35px;
    font-size: 1.3em;
  }
  .page-promo__step-title {
    font-size: 1.4em;
  }
  .page-promo__button--secondary {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-promo__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-promo__faq-answer.active {
    padding: 10px 20px 20px 20px;
  }
  .page-promo__cta-section {
    padding: 60px 15px;
  }
  .page-promo__cta-button {
    padding: 15px 30px;
    font-size: 1.2em;
  }
  /* Content area images must not cause horizontal scroll */
  .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__hero-button {
    padding: 10px 20px;
    font-size: 1em;
  }
  .page-promo__section-title {
    font-size: 1.8em;
  }
  .page-promo__card-title {
    font-size: 1.3em;
  }
  .page-promo__card-image {
    height: 150px;
  }
  .page-promo__faq-question {
    font-size: 1em;
  }
  .page-promo__cta-button {
    font-size: 1.1em;
    padding: 12px 25px;
  }
}