/* style/promotions-new-user-offers.css */
.page-promotions-new-user-offers {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: #000; /* Ensure this matches body background */
}

.page-promotions-new-user-offers__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-promotions-new-user-offers__hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px); /* Account for fixed header */
  background-color: #003366;
  overflow: hidden;
  color: #ffffff;
  text-align: center;
}

.page-promotions-new-user-offers__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.page-promotions-new-user-offers__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFCC00; /* Highlight title with accent color */
  line-height: 1.2;
}

.page-promotions-new-user-offers__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-promotions-new-user-offers__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.page-promotions-new-user-offers__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  position: absolute;
  top: 0;
  left: 0;
}

.page-promotions-new-user-offers__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-promotions-new-user-offers__btn-primary,
.page-promotions-new-user-offers__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-promotions-new-user-offers__btn-primary {
  background-color: #FFCC00;
  color: #003366;
  border: 2px solid #FFCC00;
}

.page-promotions-new-user-offers__btn-primary:hover {
  background-color: #e6b800;
  border-color: #e6b800;
}

.page-promotions-new-user-offers__btn-secondary {
  background-color: transparent;
  color: #FFCC00;
  border: 2px solid #FFCC00;
}

.page-promotions-new-user-offers__btn-secondary:hover {
  background-color: #FFCC00;
  color: #003366;
}

.page-promotions-new-user-offers__btn-large {
  padding: 18px 40px;
  font-size: 1.3em;
}

.page-promotions-new-user-offers__section-title {
  font-size: 2.5em;
  color: #FFCC00;
  text-align: center;
  margin-bottom: 40px;
  padding-top: 40px;
  line-height: 1.2;
}

.page-promotions-new-user-offers__intro-section {
  background-color: #0a0a0a;
  padding: 60px 0;
  color: #ffffff;
}

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

.page-promotions-new-user-offers__card {
  background-color: #1a1a1a;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  color: #ffffff;
}

.page-promotions-new-user-offers__card-title {
  font-size: 1.8em;
  color: #FFCC00;
  margin-bottom: 15px;
}

.page-promotions-new-user-offers__card-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-promotions-new-user-offers__list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.page-promotions-new-user-offers__list li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
  color: #f0f0f0;
}

.page-promotions-new-user-offers__list li::before {
  content: '✓';
  color: #FFCC00;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-promotions-new-user-offers__details-section {
  background-color: #003366;
  padding: 60px 0;
  color: #ffffff;
}

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

.page-promotions-new-user-offers__promo-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  color: #ffffff;
}

.page-promotions-new-user-offers__promo-card-title {
  font-size: 1.8em;
  color: #FFCC00;
  margin-bottom: 15px;
}

.page-promotions-new-user-offers__promo-subtitle {
  font-size: 1.3em;
  color: #f0f0f0;
  margin-top: 20px;
  margin-bottom: 10px;
}

.page-promotions-new-user-offers__numbered-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  counter-reset: step-counter;
}

.page-promotions-new-user-offers__numbered-list li {
  margin-bottom: 10px;
  padding-left: 35px;
  position: relative;
  color: #f0f0f0;
  counter-increment: step-counter;
}

.page-promotions-new-user-offers__numbered-list li::before {
  content: counter(step-counter) '. ';
  color: #FFCC00;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-promotions-new-user-offers__promo-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 8px;
  margin-top: 20px;
  object-fit: cover;
}

.page-promotions-new-user-offers__how-to-section {
  background-color: #0a0a0a;
  padding: 60px 0;
  color: #ffffff;
}

.page-promotions-new-user-offers__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.page-promotions-new-user-offers__step-card {
  background-color: #1a1a1a;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  color: #ffffff;
}

.page-promotions-new-user-offers__step-number {
  font-size: 2.5em;
  font-weight: bold;
  color: #FFCC00;
  margin-bottom: 15px;
}

.page-promotions-new-user-offers__step-title {
  font-size: 1.5em;
  color: #f0f0f0;
  margin-bottom: 15px;
}

.page-promotions-new-user-offers__step-image {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 8px;
  margin-top: 20px;
  object-fit: cover;
}

.page-promotions-new-user-offers__faq-section {
  background-color: #003366;
  padding: 60px 0;
  color: #ffffff;
}

.page-promotions-new-user-offers__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-promotions-new-user-offers__faq-item {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions-new-user-offers__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.05);
  transition: background-color 0.3s ease;
}

.page-promotions-new-user-offers__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.page-promotions-new-user-offers__faq-title {
  font-size: 1.2em;
  color: #FFCC00;
  margin: 0;
}

.page-promotions-new-user-offers__faq-toggle {
  font-size: 1.5em;
  font-weight: bold;
  color: #FFCC00;
  transition: transform 0.3s ease;
}

.page-promotions-new-user-offers__faq-item.active .page-promotions-new-user-offers__faq-toggle {
  transform: rotate(0deg);
}

.page-promotions-new-user-offers__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 30px;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  color: #f0f0f0;
  text-align: left;
}

.page-promotions-new-user-offers__faq-item.active .page-promotions-new-user-offers__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show content */
  padding: 15px 30px;
}

.page-promotions-new-user-offers__cta-bottom {
  background-color: #0a0a0a;
  padding: 60px 0;
  text-align: center;
  color: #ffffff;
}

.page-promotions-new-user-offers__description {
  font-size: 1.1em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-promotions-new-user-offers__hero-title {
    font-size: 2.8em;
  }
  .page-promotions-new-user-offers__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-promotions-new-user-offers {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-promotions-new-user-offers__hero-section {
    padding: 40px 15px;
    padding-top: var(--header-offset, 120px) !important;
    min-height: 500px;
  }
  .page-promotions-new-user-offers__hero-title {
    font-size: 2.2em;
  }
  .page-promotions-new-user-offers__hero-description {
    font-size: 1em;
  }
  .page-promotions-new-user-offers__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-promotions-new-user-offers__btn-primary,
  .page-promotions-new-user-offers__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-promotions-new-user-offers__section-title {
    font-size: 1.8em;
    padding-top: 20px;
  }
  .page-promotions-new-user-offers__container {
    padding: 0 15px;
  }
  .page-promotions-new-user-offers__intro-section,
  .page-promotions-new-user-offers__details-section,
  .page-promotions-new-user-offers__how-to-section,
  .page-promotions-new-user-offers__faq-section,
  .page-promotions-new-user-offers__cta-bottom {
    padding: 40px 0;
  }
  .page-promotions-new-user-offers__card,
  .page-promotions-new-user-offers__promo-card,
  .page-promotions-new-user-offers__step-card {
    padding: 20px;
  }
  .page-promotions-new-user-offers__card-image,
  .page-promotions-new-user-offers__promo-image,
  .page-promotions-new-user-offers__step-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-promotions-new-user-offers__faq-question {
    padding: 15px 20px;
  }
  .page-promotions-new-user-offers__faq-answer {
    padding: 0 20px;
  }
  .page-promotions-new-user-offers__faq-item.active .page-promotions-new-user-offers__faq-answer {
    padding: 15px 20px;
  }
  .page-promotions-new-user-offers__grid,
  .page-promotions-new-user-offers__promo-grid,
  .page-promotions-new-user-offers__steps-grid {
    grid-template-columns: 1fr;
  }
  .page-promotions-new-user-offers__section,
  .page-promotions-new-user-offers__card,
  .page-promotions-new-user-offers__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 480px) {
  .page-promotions-new-user-offers__hero-title {
    font-size: 1.8em;
  }
  .page-promotions-new-user-offers__section-title {
    font-size: 1.5em;
  }
  .page-promotions-new-user-offers__btn-large {
    font-size: 1.1em;
    padding: 12px 25px;
  }
}