/* style/promotions-new-user-details.css */
.page-promotions-new-user-details {
  font-family: 'Arial', sans-serif;
  color: #333333;
  line-height: 1.6;
  background-color: #f9f9f9;
}

.page-promotions-new-user-details__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-promotions-new-user-details__hero-section {
  background: linear-gradient(135deg, #CC0000 0%, #333333 100%);
  color: #ffffff;
  padding: 100px 0;
  text-align: center;
}

.page-promotions-new-user-details__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold accent for title */
  line-height: 1.2;
}

.page-promotions-new-user-details__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions-new-user-details__section {
  padding: 60px 0;
  border-bottom: 1px solid #eee;
}

.page-promotions-new-user-details__section:last-of-type {
  border-bottom: none;
}

.page-promotions-new-user-details__section-title {
  font-size: 2.5em;
  color: #CC0000;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-promotions-new-user-details__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-promotions-new-user-details__section--intro p,
.page-promotions-new-user-details__section--terms p,
.page-promotions-new-user-details__offer-card p {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-promotions-new-user-details__offer-card {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions-new-user-details__offer-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-promotions-new-user-details__offer-title {
  font-size: 1.8em;
  color: #333333;
  margin-bottom: 15px;
  border-left: 5px solid #CC0000;
  padding-left: 15px;
}

.page-promotions-new-user-details__offer-subtitle {
  font-size: 1.3em;
  color: #CC0000;
  margin-top: 25px;
  margin-bottom: 10px;
}

.page-promotions-new-user-details__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #555555;
}

.page-promotions-new-user-details__list li {
  margin-bottom: 10px;
  font-size: 1.05em;
}

.page-promotions-new-user-details__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  text-align: center;
}

.page-promotions-new-user-details__btn--primary {
  background-color: #CC0000;
  color: #ffffff;
  border: 2px solid #CC0000;
}

.page-promotions-new-user-details__btn--primary:hover {
  background-color: #a30000;
  transform: translateY(-2px);
}

.page-promotions-new-user-details__btn--secondary {
  background-color: #FFD700;
  color: #333333;
  border: 2px solid #FFD700;
  margin-top: 15px;
}

.page-promotions-new-user-details__btn--secondary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-promotions-new-user-details__btn--small {
  padding: 8px 18px;
  font-size: 0.9em;
}

.page-promotions-new-user-details__btn--large {
  padding: 15px 30px;
  font-size: 1.2em;
}

.page-promotions-new-user-details__btn--text {
  background: none;
  color: #CC0000;
  border: none;
  padding: 10px 15px;
  margin-left: 10px;
}

.page-promotions-new-user-details__btn--text:hover {
  text-decoration: underline;
  background-color: transparent;
  transform: none;
}

.page-promotions-new-user-details__steps-list {
  list-style-type: none;
  padding: 0;
}

.page-promotions-new-user-details__steps-list li {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.page-promotions-new-user-details__step-title {
  font-size: 1.6em;
  color: #333333;
  margin-bottom: 15px;
  position: relative;
  padding-left: 40px;
}

.page-promotions-new-user-details__step-title::before {
  content: counter(step-counter);
  counter-increment: step-counter;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: #CC0000;
  color: #ffffff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1em;
  font-weight: bold;
}

.page-promotions-new-user-details__steps-list {
  counter-reset: step-counter;
}

.page-promotions-new-user-details__image-wrapper {
  text-align: center;
  margin: 30px 0;
}

.page-promotions-new-user-details__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-promotions-new-user-details__faq-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-promotions-new-user-details__faq-question {
  font-size: 1.4em;
  color: #333333;
  padding: 20px 25px;
  margin: 0;
  cursor: pointer;
  background-color: #f5f5f5;
  position: relative;
}

.page-promotions-new-user-details__faq-question::after {
  content: '+';
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  color: #CC0000;
  transition: transform 0.3s ease;
}

.page-promotions-new-user-details__faq-item.active .page-promotions-new-user-details__faq-question::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-promotions-new-user-details__faq-answer {
  padding: 0 25px 20px;
  font-size: 1.05em;
  color: #555555;
  display: none;
  text-align: justify;
}

.page-promotions-new-user-details__faq-item.active .page-promotions-new-user-details__faq-answer {
  display: block;
}

.page-promotions-new-user-details__section--cta {
  text-align: center;
  background-color: #333333;
  color: #ffffff;
  padding: 80px 0;
}

.page-promotions-new-user-details__section--cta .page-promotions-new-user-details__section-title {
  color: #FFD700;
}

.page-promotions-new-user-details__section--cta p {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-promotions-new-user-details__hero-title {
    font-size: 2.5em;
  }
  .page-promotions-new-user-details__hero-subtitle {
    font-size: 1.1em;
  }
  .page-promotions-new-user-details__section-title {
    font-size: 2em;
  }
  .page-promotions-new-user-details__offer-title {
    font-size: 1.5em;
  }
  .page-promotions-new-user-details__step-title {
    font-size: 1.4em;
  }
  .page-promotions-new-user-details__faq-question {
    font-size: 1.2em;
  }
}

@media (max-width: 768px) {
  .page-promotions-new-user-details__hero-section {
    padding: 80px 0;
  }
  .page-promotions-new-user-details__hero-title {
    font-size: 2em;
  }
  .page-promotions-new-user-details__hero-subtitle {
    font-size: 1em;
  }
  .page-promotions-new-user-details__section {
    padding: 40px 0;
  }
  .page-promotions-new-user-details__section-title {
    font-size: 1.8em;
  }
  .page-promotions-new-user-details__btn--large {
    font-size: 1.1em;
    padding: 12px 25px;
  }
  .page-promotions-new-user-details__btn--text {
    display: block;
    margin: 10px auto;
  }
  .page-promotions-new-user-details__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-promotions-new-user-details__faq-question::after {
    right: 20px;
  }
  .page-promotions-new-user-details__faq-answer {
    padding: 0 20px 15px;
  }
}

@media (max-width: 480px) {
  .page-promotions-new-user-details__hero-section {
    padding: 60px 0;
  }
  .page-promotions-new-user-details__hero-title {
    font-size: 1.8em;
  }
  .page-promotions-new-user-details__hero-subtitle {
    font-size: 0.9em;
  }
  .page-promotions-new-user-details__section-title {
    font-size: 1.5em;
  }
  .page-promotions-new-user-details__offer-card,
  .page-promotions-new-user-details__steps-list li {
    padding: 20px;
  }
  .page-promotions-new-user-details__offer-title {
    font-size: 1.3em;
  }
  .page-promotions-new-user-details__step-title {
    font-size: 1.2em;
    padding-left: 35px;
  }
  .page-promotions-new-user-details__step-title::before {
    width: 25px;
    height: 25px;
    font-size: 0.9em;
  }
  .page-promotions-new-user-details__btn {
    width: 100%;
    margin-bottom: 10px;
  }
  .page-promotions-new-user-details__btn--text {
    margin-left: 0;
  }
  .page-promotions-new-user-details__section--cta .page-promotions-new-user-details__btn--text {
    margin-top: 15px;
  }
}