.page-promo {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-main);
  background-color: var(--background-color);
}

.page-promo__hero-section {
  padding-top: var(--header-offset, 120px);
  position: relative;
  overflow: hidden;
  color: #FFF6D6; /* Text Main */
  background: var(--background-color);
}

.page-promo__hero-carousel {
  position: relative;
  max-width: 100%;
  overflow: hidden;
}

.page-promo__hero-slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.page-promo__hero-slide {
  min-width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  opacity: 0;
  transform: translateX(100%);
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

.page-promo__hero-slide.active {
  opacity: 1;
  transform: translateX(0);
}

.page-promo__hero-slide.prev {
  transform: translateX(-100%);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

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

.page-promo__hero-content {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  max-width: 800px;
  width: 90%;
  background: rgba(0, 0, 0, 0.6);
  padding: 20px 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-promo__main-title {
  color: #F2C14E; /* Main color */
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
  max-width: 100%;
}

.page-promo__hero-description {
  font-size: 1.1em;
  margin-bottom: 25px;
  color: #FFF6D6;
}

.page-promo__cta-button {
  display: inline-block;
  padding: 12px 28px;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button gradient */
  color: #111111; /* Dark text for bright button */
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: none;
}

.page-promo__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-promo__hero-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.page-promo__hero-dot {
  width: 10px;
  height: 10px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.page-promo__hero-dot.active {
  background-color: #F2C14E; /* Main color */
}

.page-promo__content-section {
  padding: 60px 0;
}

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

.page-promo__dark-bg {
  background-color: #0A0A0A; /* Background color */
  color: #FFF6D6; /* Text Main */
}

.page-promo__light-bg {
  background-color: #111111; /* Card BG */
  color: #FFF6D6; /* Text Main */
}

.page-promo__section-title {
  font-size: 2.5em;
  color: #F2C14E; /* Main color */
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
}

.page-promo__text-block {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
}

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

.page-promo__feature-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  border: 1px solid #3A2A12; /* Border color */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promo__feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.page-promo__feature-title {
  font-size: 1.5em;
  color: #FFD36B; /* Auxiliary color */
  margin-bottom: 15px;
}

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

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

.page-promo__promo-card {
  background: #0A0A0A; /* Background color */
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  border: 1px solid #3A2A12; /* Border color */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-promo__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
  display: block;
}

.page-promo__card-title {
  font-size: 1.4em;
  color: #F2C14E; /* Main color */
  margin-bottom: 10px;
}

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

.page-promo__cta-button--small {
  padding: 10px 20px;
  font-size: 0.9em;
}

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

.page-promo__step-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  border: 1px solid #3A2A12; /* Border color */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-promo__step-number {
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  background: #F2C14E; /* Main color */
  color: #111111; /* Dark text for bright number */
  border-radius: 50%;
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 20px;
}

.page-promo__step-title {
  font-size: 1.5em;
  color: #FFD36B; /* Auxiliary color */
  margin-bottom: 15px;
}

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

.page-promo__vip-highlights {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 40px;
}

.page-promo__vip-feature {
  display: flex;
  align-items: center;
  gap: 30px;
  background: #0A0A0A; /* Background color */
  padding: 25px;
  border-radius: 10px;
  border: 1px solid #3A2A12; /* Border color */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-promo__vip-image {
  width: 200px;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
  display: block;
}

.page-promo__vip-text {
  flex-grow: 1;
}

.page-promo__vip-title {
  font-size: 1.6em;
  color: #F2C14E; /* Main color */
  margin-bottom: 10px;
}

.page-promo__cta-button--secondary {
  background: #111111; /* Card BG */
  color: #F2C14E; /* Main color */
  border: 2px solid #F2C14E;
  margin-top: 30px;
}

.page-promo__cta-button--secondary:hover {
  background: #F2C14E;
  color: #111111;
}

.page-promo__app-cta {
  display: flex;
  align-items: center;
  gap: 40px;
  background: rgba(255, 255, 255, 0.05);
  padding: 40px;
  border-radius: 15px;
  margin-top: 40px;
  border: 1px solid #3A2A12; /* Border color */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.page-promo__app-image {
  width: 300px;
  height: 225px;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
}

.page-promo__app-text {
  flex-grow: 1;
}

.page-promo__app-title {
  font-size: 2em;
  color: #FFD36B; /* Auxiliary color */
  margin-bottom: 20px;
}

.page-promo__app-text .page-promo__cta-button {
  margin-right: 15px;
  margin-top: 15px;
}

.page-promo__responsible-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.page-promo__responsible-list li {
  background: rgba(255, 255, 255, 0.05);
  padding: 15px 25px;
  border-radius: 8px;
  border: 1px solid #3A2A12; /* Border color */
  color: #FFF6D6;
  font-size: 1.1em;
  transition: background-color 0.3s ease;
}

.page-promo__responsible-list li:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.page-promo__responsible-list li a {
  color: #F2C14E; /* Main color */
  text-decoration: none;
  font-weight: bold;
}

.page-promo__responsible-list li a:hover {
  text-decoration: underline;
}

.page-promo__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-promo__faq-item {
  background: #0A0A0A; /* Background color */
  border: 1px solid #3A2A12; /* Border color */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-promo__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  font-size: 1.2em;
  color: #F2C14E; /* Main color */
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-promo__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

.page-promo__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: #FFD36B; /* Auxiliary color */
  transition: transform 0.3s ease;
}

.page-promo__faq-item.active .page-promo__faq-toggle {
  transform: rotate(45deg);
}

.page-promo__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #FFF6D6; /* Text Main */
}

.page-promo__faq-item.active .page-promo__faq-answer {
  max-height: 1000px !important; /* Sufficiently large */
  padding: 15px 20px 20px 20px;
}

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

.page-promo__cta-section {
  padding: 80px 0;
  text-align: center;
  background-color: #111111; /* Card BG */
  color: #FFF6D6; /* Text Main */
}

.page-promo__cta-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  object-fit: cover;
  border-radius: 15px;
  margin-bottom: 40px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-promo__cta-buttons {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* General image responsiveness */
.page-promo img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Mobile responsiveness */
@media (max-width: 992px) {
  .page-promo__hero-content {
    bottom: 5%;
    padding: 15px 20px;
  }
  .page-promo__main-title {
    font-size: 2em;
  }
  .page-promo__hero-description {
    font-size: 1em;
  }
  .page-promo__section-title {
    font-size: 2em;
  }
  .page-promo__app-cta {
    flex-direction: column;
    text-align: center;
  }
  .page-promo__app-image {
    width: 100%;
    max-width: 300px;
    margin-bottom: 20px;
  }
  .page-promo__app-text .page-promo__cta-button {
    margin-right: 0;
    margin-bottom: 10px;
  }
  .page-promo__vip-feature {
    flex-direction: column;
    text-align: center;
  }
  .page-promo__vip-image {
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .page-promo {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-promo__hero-section {
    padding-top: var(--header-offset, 120px) !important;
  }
  .page-promo__hero-content {
    bottom: 0;
    left: 0;
    transform: translateX(0);
    width: 100%;
    border-radius: 0;
    padding: 15px;
  }
  .page-promo__main-title {
    font-size: 1.8em;
  }
  .page-promo__hero-description {
    font-size: 0.9em;
  }
  .page-promo__cta-button {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-promo__section-title {
    font-size: 1.8em;
  }
  .page-promo__text-block {
    font-size: 1em;
    margin-bottom: 30px;
  }
  .page-promo__container {
    padding: 0 15px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-promo img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-promo__section,
  .page-promo__card,
  .page-promo__container,
  .page-promo__feature-card,
  .page-promo__promo-card,
  .page-promo__step-card,
  .page-promo__vip-feature,
  .page-promo__app-cta,
  .page-promo__cta-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-promo__cta-button,
  .page-promo__btn-primary,
  .page-promo__btn-secondary,
  .page-promo a[class*="button"],
  .page-promo a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-promo__cta-buttons,
  .page-promo__button-group,
  .page-promo__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
    flex-direction: column; /* Stack buttons vertically on mobile */
  }
  .page-promo__responsible-list {
    flex-direction: column;
    align-items: center;
  }
  .page-promo__responsible-list li {
    width: 100%;
    max-width: 300px;
  }
}