.page-promo {
  color: #333333;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px);
}

.page-promo__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 500px;
  padding: 60px 20px;
  background-color: #007bff;
  color: #ffffff;
  overflow: hidden;
}

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

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

.page-promo__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #ffc107;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

.page-promo__hero-button {
  display: inline-block;
  background-color: #ffc107;
  color: #007bff;
  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;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

.page-promo__promotions-grid {
  padding: 60px 20px;
  background-color: #f5f5f5;
  text-align: center;
}

.page-promo__grid-title {
  font-size: 2.5em;
  color: #007bff;
  margin-bottom: 40px;
}

.page-promo__grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-promo__promo-card {
  background-color: #ffffff;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

.page-promo__card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.page-promo__card-title {
  font-size: 1.6em;
  color: #007bff;
  margin: 20px 20px 10px;
}

.page-promo__card-description {
  font-size: 0.95em;
  color: #555555;
  padding: 0 20px;
  flex-grow: 1;
}

.page-promo__card-button {
  display: inline-block;
  background-color: #ffc107;
  color: #007bff;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  margin: 20px;
  transition: background-color 0.3s ease;
}

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

.page-promo__how-to-participate {
  padding: 80px 20px;
  background-color: #007bff;
  color: #ffffff;
  text-align: center;
}

.page-promo__how-to-title {
  font-size: 2.8em;
  color: #ffc107;
  margin-bottom: 50px;
}

.page-promo__steps-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-promo__step {
  flex: 1;
  max-width: 350px;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

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

.page-promo__step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: #ffc107;
  color: #007bff;
  border-radius: 50%;
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 20px;
}

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

.page-promo__step-description {
  font-size: 1em;
  margin-bottom: 25px;
}

.page-promo__step-button {
  display: inline-block;
  background-color: #ffc107;
  color: #007bff;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  transition: background-color 0.3s ease;
}

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

.page-promo__why-choose {
  padding: 80px 20px;
  background-color: #f5f5f5;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-promo__why-choose-title {
  width: 100%;
  text-align: center;
  font-size: 2.5em;
  color: #007bff;
  margin-bottom: 40px;
}

.page-promo__why-choose-content {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
  text-align: left;
}

.page-promo__why-choose-description {
  font-size: 1.1em;
  color: #555555;
  margin-bottom: 20px;
}

.page-promo__why-choose-list {
  list-style: none;
  padding: 0;
}

.page-promo__list-item {
  background-color: #ffffff;
  margin-bottom: 10px;
  padding: 15px 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  font-size: 1em;
  color: #333333;
}

.page-promo__list-item strong {
  color: #007bff;
}

.page-promo__why-choose-image {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

.page-promo__faq-section {
  padding: 80px 20px;
  background-color: #ffffff;
  max-width: 1000px;
  margin: 0 auto;
}

.page-promo__faq-title {
  text-align: center;
  font-size: 2.5em;
  color: #007bff;
  margin-bottom: 50px;
}

.page-promo__faq-item {
  background-color: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  margin-bottom: 20px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.page-promo__faq-question {
  font-size: 1.4em;
  color: #007bff;
  margin-bottom: 10px;
}

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

.page-promo__cta-section {
  padding: 80px 20px;
  background-color: #007bff;
  color: #ffffff;
  text-align: center;
}

.page-promo__cta-title {
  font-size: 2.8em;
  color: #ffc107;
  margin-bottom: 20px;
}

.page-promo__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-promo__cta-button {
  display: inline-block;
  background-color: #ffc107;
  color: #007bff;
  padding: 18px 40px;
  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 6px 20px rgba(0, 0, 0, 0.3);
}

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

@media (max-width: 1024px) {
  .page-promo__hero-title {
    font-size: 2.8em;
  }
  .page-promo__grid-container {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  .page-promo__steps-container {
    flex-wrap: wrap;
  }
  .page-promo__step {
    max-width: 45%;
  }
}

@media (max-width: 768px) {
  .page-promo__hero-section {
    padding: 40px 15px;
    min-height: 400px;
  }
  .page-promo__hero-title {
    font-size: 2.2em;
  }
  .page-promo__hero-description {
    font-size: 1em;
  }
  .page-promo__hero-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-promo__grid-title,
  .page-promo__how-to-title,
  .page-promo__why-choose-title,
  .page-promo__faq-title,
  .page-promo__cta-title {
    font-size: 2em;
    margin-bottom: 30px;
  }
  .page-promo__promotions-grid,
  .page-promo__how-to-participate,
  .page-promo__why-choose,
  .page-promo__faq-section,
  .page-promo__cta-section {
    padding: 40px 15px;
  }
  .page-promo__grid-container {
    grid-template-columns: 1fr;
  }
  .page-promo__steps-container {
    flex-direction: column;
    gap: 25px;
  }
  .page-promo__step {
    max-width: 100%;
  }
  .page-promo__why-choose-content,
  .page-promo__why-choose-image {
    min-width: unset;
    max-width: 100%;
  }
  .page-promo__why-choose-image {
    width: 100%;
    height: auto;
  }
  .page-promo__card-image, .page-promo__why-choose-image {
    max-width: 100%;
    height: auto;
  }
  .page-promo__promo-card img, .page-promo__why-choose-image {
    max-width: 100%;
    height: auto;
  }
  .page-promo__hero-section img, .page-promo__promo-card img, .page-promo__why-choose-image {
    max-width: 100% !important;
    height: auto !important;
  }
  .page-promo img {
    max-width: 100% !important;
    height: auto !important;
  }
}

@media (max-width: 480px) {
  .page-promo__hero-title {
    font-size: 1.8em;
  }
  .page-promo__grid-title,
  .page-promo__how-to-title,
  .page-promo__why-choose-title,
  .page-promo__faq-title,
  .page-promo__cta-title {
    font-size: 1.8em;
  }
  .page-promo__step-title {
    font-size: 1.5em;
  }
  .page-promo__faq-question {
    font-size: 1.2em;
  }
  .page-promo__cta-button {
    padding: 15px 30px;
    font-size: 1.1em;
  }
}