.page-promo {
  color: #ffffff;
  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__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-promo__hero-section {
  position: relative;
  overflow: hidden;
  background-color: #1A202C;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}

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

.page-promo__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px 20px;
  max-width: 900px;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay for text readability */
  border-radius: 10px;
  margin: 20px;
}

.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;
  color: #f0f0f0;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-promo__hero-button,
.page-promo__main-button {
  display: inline-block;
  background-color: #FFD700;
  color: #1A202C;
  padding: 15px 30px;
  font-size: 1.2em;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

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

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

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

.page-promo__promotions-overview-section,
.page-promo__how-to-participate-section,
.page-promo__why-choose-us-section,
.page-promo__faq-section,
.page-promo__cta-final-section {
  padding: 60px 0;
  background-color: #1A202C;
}

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

.page-promo__promotion-card {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.page-promo__promotion-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.page-promo__card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  border-bottom: 2px solid #FFD700;
}

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

.page-promo__card-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
  line-height: 1.3;
}

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

.page-promo__card-button {
  display: inline-block;
  background-color: #FFD700;
  color: #1A202C;
  padding: 12px 25px;
  font-size: 1em;
  font-weight: bold;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  text-align: center;
  margin-top: auto;
}

.page-promo__card-button:hover {
  background-color: #e5c100;
}

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

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

.page-promo__step-card:hover {
  transform: translateY(-5px);
}

.page-promo__step-number {
  display: inline-block;
  background-color: #FFD700;
  color: #1A202C;
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 50%;
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 20px;
}

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

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

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

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

.page-promo__benefit-item {
  background-color: rgba(255, 255, 255, 0.08);
  border-left: 5px solid #FFD700;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

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

.page-promo__benefit-description {
  font-size: 1em;
  color: #cccccc;
}

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

.page-promo__faq-item {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  margin-bottom: 20px;
  overflow: hidden;
}

.page-promo__faq-question {
  font-size: 1.4em;
  color: #FFD700;
  padding: 20px 25px;
  cursor: pointer;
  margin: 0;
  position: relative;
  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;
  color: #FFD700;
  transition: transform 0.3s ease;
}

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

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

.page-promo__faq-answer p {
  margin-top: 0;
  padding-bottom: 20px;
  color: #cccccc;
}

.page-promo__faq-answer.page-promo__faq-answer--active {
  max-height: 200px; /* Adjust based on content */
  padding-top: 10px;
  padding-bottom: 20px;
}

.page-promo__cta-final-section {
  text-align: center;
  padding: 80px 20px;
  background-color: #1A202C;
}

.page-promo__cta-final-section .page-promo__section-title {
  margin-top: 0;
  font-size: 3em;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promo__hero-title {
    font-size: 3em;
  }
  .page-promo__section-title {
    font-size: 2.2em;
  }
  .page-promo__hero-image,
  .page-promo__promotions-grid img,
  .page-promo__card-image,
  .page-promo__hero-section img,
  .page-promo__promotions-grid .page-promo__card-image,
  .page-promo__steps-grid img,
  .page-promo__benefits-list img,
  .page-promo__faq-list img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 768px) {
  .page-promo {
    padding-top: var(--header-offset, 120px);
  }
  .page-promo__hero-title {
    font-size: 2.2em;
  }
  .page-promo__hero-description {
    font-size: 1.1em;
  }
  .page-promo__hero-button,
  .page-promo__main-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-promo__section-title {
    font-size: 1.8em;
  }
  .page-promo__section-intro {
    font-size: 0.95em;
  }
  .page-promo__promotions-grid {
    grid-template-columns: 1fr;
  }
  .page-promo__steps-grid {
    grid-template-columns: 1fr;
  }
  .page-promo__benefits-list {
    grid-template-columns: 1fr;
  }
  .page-promo__card-title {
    font-size: 1.5em;
  }
  .page-promo__step-title {
    font-size: 1.4em;
  }
  .page-promo__benefit-title {
    font-size: 1.5em;
  }
  .page-promo__faq-question {
    font-size: 1.2em;
  }
  .page-promo__hero-image,
  .page-promo__promotions-grid img,
  .page-promo__card-image,
  .page-promo__hero-section img,
  .page-promo__promotions-grid .page-promo__card-image,
  .page-promo__steps-grid img,
  .page-promo__benefits-list img,
  .page-promo__faq-list img {
    max-width: 100%;
    height: auto;
  }
  /* Ensure all content area images are not smaller than 200px */
  .page-promo__hero-image, .page-promo__card-image {
    min-width: 200px;
    min-height: 200px;
  }
}

@media (max-width: 480px) {
  .page-promo__hero-title {
    font-size: 1.8em;
  }
  .page-promo__hero-description {
    font-size: 1em;
  }
  .page-promo__section-title {
    font-size: 1.5em;
  }
  .page-promo__hero-button,
  .page-promo__main-button {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-promo__hero-content {
    padding: 20px 15px;
  }
}