.page-promo-deposit-bonus {
  color: #333333; /* Dark text for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-promo-deposit-bonus__hero-section {
  position: relative;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
  background-color: #0A2463;
  color: #ffffff;
  text-align: center;
  overflow: hidden;
}

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

.page-promo-deposit-bonus__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0.2;
}

.page-promo-deposit-bonus__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 20px;
  background: rgba(0, 0, 0, 0.4); /* Semi-transparent overlay for text readability */
  border-radius: 10px;
}

.page-promo-deposit-bonus__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  line-height: 1.2;
}

.page-promo-deposit-bonus__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #ffffff;
}

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

.page-promo-deposit-bonus__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  white-space: nowrap;
}

.page-promo-deposit-bonus__button--primary {
  background-color: #FFD700;
  color: #0A2463;
  border: 2px solid #FFD700;
}

.page-promo-deposit-bonus__button--primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-promo-deposit-bonus__button--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-promo-deposit-bonus__button--secondary:hover {
  background-color: #FFD700;
  color: #0A2463;
  transform: translateY(-2px);
}

.page-promo-deposit-bonus__button--large {
  padding: 18px 35px;
  font-size: 1.2em;
}

.page-promo-deposit-bonus__button--xxl {
  padding: 20px 40px;
  font-size: 1.4em;
}

.page-promo-deposit-bonus__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.page-promo-deposit-bonus__section-title {
  font-size: 2.5em;
  color: #0A2463;
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

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

.page-promo-deposit-bonus__section-description {
  font-size: 1.1em;
  color: #555555;
  text-align: center;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-promo-deposit-bonus__benefits-section {
  background-color: #f9f9f9;
  padding: 80px 0;
}

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

.page-promo-deposit-bonus__benefit-card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promo-deposit-bonus__benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.page-promo-deposit-bonus__benefit-icon {
  width: 250px; /* Min size 200x200px */
  height: 200px;
  margin-bottom: 20px;
  object-fit: contain;
  border-radius: 5px;
}

.page-promo-deposit-bonus__benefit-title {
  font-size: 1.5em;
  color: #0A2463;
  margin-bottom: 15px;
}

.page-promo-deposit-bonus__benefit-text {
  color: #666666;
  font-size: 0.95em;
}

.page-promo-deposit-bonus__how-it-works-section {
  padding: 80px 0;
}

.page-promo-deposit-bonus__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.page-promo-deposit-bonus__step-card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  position: relative;
  padding-top: 60px;
}

.page-promo-deposit-bonus__step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #0A2463;
  color: #FFD700;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2em;
  font-weight: bold;
  border: 4px solid #FFD700;
}

.page-promo-deposit-bonus__step-title {
  font-size: 1.6em;
  color: #0A2463;
  margin-bottom: 15px;
}

.page-promo-deposit-bonus__step-text {
  color: #666666;
}

.page-promo-deposit-bonus__step-text a {
  color: #0A2463;
  text-decoration: underline;
  font-weight: bold;
}

.page-promo-deposit-bonus__step-text a:hover {
  color: #FFD700;
}

.page-promo-deposit-bonus__cta-area {
  text-align: center;
  margin-top: 40px;
}

.page-promo-deposit-bonus__featured-bonuses-section {
  background-color: #f0f4f7;
  padding: 80px 0;
}

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

.page-promo-deposit-bonus__bonus-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promo-deposit-bonus__bonus-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

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

.page-promo-deposit-bonus__bonus-content {
  padding: 25px;
}

.page-promo-deposit-bonus__bonus-title {
  font-size: 1.8em;
  color: #0A2463;
  margin-bottom: 15px;
}

.page-promo-deposit-bonus__bonus-text {
  color: #666666;
  margin-bottom: 20px;
}

.page-promo-deposit-bonus__bonus-features {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.page-promo-deposit-bonus__bonus-features li {
  margin-bottom: 8px;
  color: #333333;
  font-size: 0.95em;
  position: relative;
  padding-left: 25px;
}

.page-promo-deposit-bonus__bonus-features li::before {
  content: '✔';
  color: #FFD700;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-promo-deposit-bonus__terms-section {
  padding: 80px 0;
}

.page-promo-deposit-bonus__terms-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-promo-deposit-bonus__term-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.page-promo-deposit-bonus__term-title {
  font-size: 1.4em;
  color: #0A2463;
  margin-bottom: 10px;
}

.page-promo-deposit-bonus__term-text {
  color: #666666;
}

.page-promo-deposit-bonus__full-terms-link {
  text-align: center;
  margin-top: 40px;
  font-size: 1.1em;
}

.page-promo-deposit-bonus__full-terms-link a {
  color: #0A2463;
  font-weight: bold;
  text-decoration: none;
}

.page-promo-deposit-bonus__full-terms-link a:hover {
  text-decoration: underline;
  color: #FFD700;
}

.page-promo-deposit-bonus__faq-section {
  background-color: #f9f9f9;
  padding: 80px 0;
}

.page-promo-deposit-bonus__faq-list {
  max-width: 900px;
  margin: 0 auto 40px auto;
}

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

.page-promo-deposit-bonus__faq-question {
  font-size: 1.25em;
  color: #0A2463;
  padding: 20px;
  cursor: pointer;
  position: relative;
  margin: 0;
  transition: background-color 0.3s ease;
}

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

.page-promo-deposit-bonus__faq-question::after {
  content: '+';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  color: #FFD700;
  transition: transform 0.3s ease;
}

.page-promo-deposit-bonus__faq-item.active .page-promo-deposit-bonus__faq-question::after {
  transform: translateY(-50%) rotate(45deg);
}

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

.page-promo-deposit-bonus__faq-item.active .page-promo-deposit-bonus__faq-answer {
  max-height: 200px; /* Adjust as needed for content */
  padding-top: 10px;
}

.page-promo-deposit-bonus__cta-final-section {
  background-color: #0A2463;
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
}

.page-promo-deposit-bonus__cta-final-section .page-promo-deposit-bonus__section-title {
  color: #FFD700;
}

.page-promo-deposit-bonus__cta-final-section .page-promo-deposit-bonus__section-description {
  color: #ffffff;
}

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

  .page-promo-deposit-bonus__hero-description {
    font-size: 1.1em;
  }

  .page-promo-deposit-bonus__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-promo-deposit-bonus__hero-section {
    padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
  }

  .page-promo-deposit-bonus__hero-title {
    font-size: 2.2em;
  }

  .page-promo-deposit-bonus__hero-description {
    font-size: 1em;
    margin-bottom: 30px;
  }

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

  .page-promo-deposit-bonus__button {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

  .page-promo-deposit-bonus__section-title {
    font-size: 1.8em;
  }

  .page-promo-deposit-bonus__section-description {
    font-size: 0.95em;
    margin-bottom: 40px;
  }

  .page-promo-deposit-bonus__benefits-grid, 
  .page-promo-deposit-bonus__steps-grid, 
  .page-promo-deposit-bonus__bonus-grid, 
  .page-promo-deposit-bonus__terms-content {
    grid-template-columns: 1fr;
  }

  .page-promo-deposit-bonus__benefit-icon {
    width: 200px; /* Minimum size for mobile, as per requirements */
    height: 150px;
  }

  .page-promo-deposit-bonus__bonus-image {
    height: 200px;
  }

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

@media (max-width: 480px) {
  .page-promo-deposit-bonus__hero-content {
    padding: 30px 15px;
  }
  .page-promo-deposit-bonus__hero-title {
    font-size: 1.8em;
  }
  .page-promo-deposit-bonus__hero-description {
    font-size: 0.9em;
  }
  .page-promo-deposit-bonus__section-title {
    font-size: 1.5em;
  }
  .page-promo-deposit-bonus__section-description {
    font-size: 0.85em;
  }
  .page-promo-deposit-bonus__button--large {
    font-size: 1em;
    padding: 12px 25px;
  }
  .page-promo-deposit-bonus__button--xxl {
    font-size: 1.2em;
    padding: 15px 30px;
  }
  .page-promo-deposit-bonus__faq-question {
    font-size: 1.1em;
  }
}