.page-promo-deposit-offers {
  color: #333333; /* Dark text for light body background */
}

.page-promo-deposit-offers__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
}

.page-promo-deposit-offers__hero-container {
  position: relative;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.page-promo-deposit-offers__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: brightness(0.5); /* Darken image for text readability */
}

.page-promo-deposit-offers__hero-content {
  color: #FFFFFF;
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.page-promo-deposit-offers__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FCBC45; /* Login button color for emphasis */
}

.page-promo-deposit-offers__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  line-height: 1.6;
}

.page-promo-deposit-offers__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-promo-deposit-offers__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-promo-deposit-offers__button--register {
  background-color: #FFFFFF;
  color: #000000;
}

.page-promo-deposit-offers__button--register:hover {
  background-color: #e0e0e0;
  transform: translateY(-2px);
}

.page-promo-deposit-offers__button--claim,
.page-promo-deposit-offers__button--primary,
.page-promo-deposit-offers__button--large {
  background-color: #FCBC45;
  color: #000000;
}

.page-promo-deposit-offers__button--claim:hover,
.page-promo-deposit-offers__button--primary:hover,
.page-promo-deposit-offers__button--large:hover {
  background-color: #e0a53b;
  transform: translateY(-2px);
}

.page-promo-deposit-offers__offers-section {
  padding: 80px 20px;
  background-color: #f8f8f8;
  text-align: center;
}

.page-promo-deposit-offers__section-title {
  font-size: 2.8em;
  margin-bottom: 50px;
  color: #000000;
}

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

.page-promo-deposit-offers__offer-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: left;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.page-promo-deposit-offers__offer-card:hover {
  transform: translateY(-8px);
}

.page-promo-deposit-offers__card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.page-promo-deposit-offers__card-title {
  font-size: 1.6em;
  color: #000000;
  margin: 20px 20px 10px;
}

.page-promo-deposit-offers__card-description {
  font-size: 1em;
  color: #555555;
  margin: 0 20px 25px;
  flex-grow: 1;
}

.page-promo-deposit-offers__button--card {
  margin: 0 20px 20px;
  width: calc(100% - 40px);
  text-align: center;
  background-color: #FCBC45;
  color: #000000;
}

.page-promo-deposit-offers__how-it-works-section {
  padding: 80px 20px;
  text-align: center;
}

.page-promo-deposit-offers__how-it-works-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto 50px;
  gap: 40px;
}

.page-promo-deposit-offers__how-it-works-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  width: 100%;
}

.page-promo-deposit-offers__step {
  background-color: #FFFFFF;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
}

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

.page-promo-deposit-offers__step-title {
  font-size: 1.4em;
  color: #000000;
  margin-bottom: 15px;
}

.page-promo-deposit-offers__step-description {
  font-size: 1em;
  color: #555555;
}

.page-promo-deposit-offers__how-it-works-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-promo-deposit-offers__how-it-works-cta {
  text-align: center;
}

.page-promo-deposit-offers__faq-section {
  padding: 80px 20px;
  background-color: #f8f8f8;
  text-align: center;
}

.page-promo-deposit-offers__faq-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.page-promo-deposit-offers__faq-item {
  background-color: #FFFFFF;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.page-promo-deposit-offers__faq-question {
  width: 100%;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: bold;
  color: #000000;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.page-promo-deposit-offers__faq-question::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-promo-deposit-offers__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-promo-deposit-offers__faq-question:hover {
  background-color: #f0f0f0;
}

.page-promo-deposit-offers__faq-answer {
  padding: 0 25px 20px;
  font-size: 1em;
  color: #555555;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-promo-deposit-offers__faq-answer.open {
  max-height: 200px; /* Adjust as needed */
  padding: 0 25px 20px;
}

.page-promo-deposit-offers__cta-section {
  padding: 80px 20px;
  background-color: #000000;
  color: #FFFFFF;
  text-align: center;
}

.page-promo-deposit-offers__cta-title {
  font-size: 3em;
  margin-bottom: 20px;
  color: #FCBC45;
}

.page-promo-deposit-offers__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-promo-deposit-offers__hero-title {
    font-size: 3em;
  }

  .page-promo-deposit-offers__section-title,
  .page-promo-deposit-offers__cta-title {
    font-size: 2.5em;
  }

  .page-promo-deposit-offers__how-it-works-content {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .page-promo-deposit-offers__hero-section {
    min-height: 400px;
    padding-top: var(--header-offset, 80px);
  }

  .page-promo-deposit-offers__hero-title {
    font-size: 2.5em;
  }

  .page-promo-deposit-offers__hero-description {
    font-size: 1em;
  }

  .page-promo-deposit-offers__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-promo-deposit-offers__button {
    width: 100%;
    max-width: 300px;
  }

  .page-promo-deposit-offers__section-title,
  .page-promo-deposit-offers__cta-title {
    font-size: 2em;
  }

  .page-promo-deposit-offers__offers-grid,
  .page-promo-deposit-offers__how-it-works-steps {
    grid-template-columns: 1fr;
  }

  .page-promo-deposit-offers__offer-card {
    margin: 0 auto;
    max-width: 400px;
  }

  .page-promo-deposit-offers__how-it-works-image {
    max-width: 100%;
  }

  .page-promo-deposit-offers__faq-question {
    font-size: 1.1em;
  }

  .page-promo-deposit-offers__faq-answer {
    padding: 0 20px 15px;
  }

  .page-promo-deposit-offers__cta-description {
    font-size: 1em;
  }

  /* Ensure all content images are responsive and do not overflow */
  .page-promo-deposit-offers img {
    max-width: 100%;
    height: auto;
  }

  /* Specific override for hero image if necessary to prevent overflow */
  .page-promo-deposit-offers__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

@media (max-width: 480px) {
  .page-promo-deposit-offers__hero-title {
    font-size: 2em;
  }

  .page-promo-deposit-offers__section-title,
  .page-promo-deposit-offers__cta-title {
    font-size: 1.8em;
  }

  .page-promo-deposit-offers__button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-promo-deposit-offers__step-number {
    width: 50px;
    height: 50px;
    font-size: 1.8em;
  }

  .page-promo-deposit-offers__faq-question {
    padding: 15px 20px;
    font-size: 1em;
  }
}