:root {
  --bmw55-primary-color: #F2C14E;
  --bmw55-secondary-color: #FFD36B;
  --bmw55-card-bg: #111111;
  --bmw55-background: #0A0A0A;
  --bmw55-text-main: #FFF6D6;
  --bmw55-border-color: #3A2A12;
  --bmw55-glow-color: #FFD36B;
  --bmw55-button-gradient: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
}

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

.page-promo__hero-section {
  padding-top: var(--header-offset, 120px);
  background-color: var(--bmw55-background);
  color: var(--bmw55-text-main);
  text-align: center;
  padding-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.page-promo__hero-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.page-promo__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  margin-bottom: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-promo__hero-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--bmw55-secondary-color);
  margin-bottom: 15px;
  text-shadow: 0 0 15px rgba(255, 211, 107, 0.7);
}

.page-promo__hero-description {
  font-size: 1.2rem;
  line-height: 1.7;
  margin-bottom: 30px;
  color: var(--bmw55-text-main);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-promo__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  background: var(--bmw55-button-gradient);
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 15px rgba(242, 193, 78, 0.4);
  border: none;
  cursor: pointer;
  text-align: center;
}

.page-promo__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(242, 193, 78, 0.6);
}

.page-promo__section {
  padding: 80px 20px;
  background-color: var(--bmw55-background);
  color: var(--bmw55-text-main);
  text-align: center;
}

.page-promo__dark-section {
  background-color: var(--bmw55-card-bg);
}

.page-promo__section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--bmw55-primary-color);
  margin-bottom: 20px;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(242, 193, 78, 0.5);
}

.page-promo__section-description {
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 900px;
  margin: 0 auto 50px auto;
  color: var(--bmw55-text-main);
}

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

.page-promo__card {
  background-color: var(--bmw55-card-bg);
  border: 1px solid var(--bmw55-border-color);
  border-radius: 12px;
  padding: 30px;
  text-align: left;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: var(--bmw55-text-main);
}

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

.page-promo__card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 1px solid var(--bmw55-border-color);
}

.page-promo__card-title {
  font-size: 1.5rem;
  color: var(--bmw55-secondary-color);
  margin-bottom: 15px;
  font-weight: 600;
}

.page-promo__card-text {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--bmw55-text-main);
  margin-bottom: 20px;
}

.page-promo__card-button {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 6px;
  background: var(--bmw55-button-gradient);
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.3s ease;
  border: none;
  cursor: pointer;
  text-align: center;
}

.page-promo__card-button:hover {
  opacity: 0.9;
}

.page-promo__list {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 0 auto 40px auto;
  text-align: left;
}

.page-promo__list-item {
  background-color: var(--bmw55-card-bg);
  border: 1px solid var(--bmw55-border-color);
  border-radius: 8px;
  padding: 20px 25px;
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  font-size: 1.1rem;
  color: var(--bmw55-text-main);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-promo__list-item::before {
  content: '✔';
  color: var(--bmw55-primary-color);
  font-weight: bold;
  margin-right: 15px;
  font-size: 1.3rem;
}

.page-promo__steps {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.page-promo__step-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}

.page-promo__step-number {
  background-color: var(--bmw55-primary-color);
  color: #ffffff;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-right: 20px;
  box-shadow: 0 2px 8px rgba(242, 193, 78, 0.4);
}

.page-promo__step-content {
  flex-grow: 1;
}

.page-promo__step-title {
  font-size: 1.4rem;
  color: var(--bmw55-secondary-color);
  margin-bottom: 8px;
  font-weight: 600;
}

.page-promo__step-text {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--bmw55-text-main);
}

.page-promo__faq-section {
  padding: 80px 20px;
  background-color: var(--bmw55-card-bg);
  color: var(--bmw55-text-main);
  text-align: center;
}

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

.page-promo__faq-item {
  background-color: var(--bmw55-background);
  border: 1px solid var(--bmw55-border-color);
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-promo__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--bmw55-secondary-color);
  cursor: pointer;
  background-color: var(--bmw55-card-bg);
  transition: background-color 0.3s ease;
}

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

.page-promo__faq-toggle {
  font-size: 1.8rem;
  line-height: 1;
  font-weight: 300;
  color: var(--bmw55-primary-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 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--bmw55-text-main);
  background-color: var(--bmw55-background);
}

.page-promo__faq-item.active .page-promo__faq-answer {
  max-height: 1000px !important;
  padding: 15px 25px;
}

.page-promo .text-highlight {
  color: var(--bmw55-secondary-color);
  font-weight: 600;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promo__hero-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }

  .page-promo__section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  }
}

@media (max-width: 768px) {
  .page-promo {
    font-size: 16px;
    line-height: 1.6;
  }
  
  .page-promo__hero-section {
    padding-top: var(--header-offset, 100px) !important;
    padding-bottom: 40px;
  }

  .page-promo__hero-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }

  .page-promo__hero-description {
    font-size: 1rem;
  }

  .page-promo__cta-button {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 15px 20px;
    margin-bottom: 15px;
  }
  
  .page-promo__cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-promo__section {
    padding: 40px 15px;
  }

  .page-promo__section-title {
    font-size: clamp(1.6rem, 6vw, 2rem);
    margin-bottom: 30px;
  }

  .page-promo__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-promo__card {
    padding: 25px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-promo__card-image {
    height: 180px;
  }

  .page-promo__card-title {
    font-size: 1.3rem;
  }

  .page-promo__list-item {
    font-size: 1rem;
    padding: 15px 20px;
  }

  .page-promo__step-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .page-promo__step-number {
    margin-right: 0;
    margin-bottom: 15px;
  }

  .page-promo__step-title {
    font-size: 1.2rem;
  }
  
  .page-promo img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-promo__section,
  .page-promo__card,
  .page-promo__container,
  .page-promo__faq-item,
  .page-promo__steps {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-promo__section-description {
    margin-bottom: 30px;
  }
}