.page-promotions-deposit-bonus {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #2C3E50;
  background-color: #f8f8f8;
}

.page-promotions-deposit-bonus .highlight {
  color: #FFD700; /* Gold */
}

.page-promotions-deposit-bonus__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-promotions-deposit-bonus__text-center {
  text-align: center;
}

/* Hero Section */
.page-promotions-deposit-bonus__hero-section {
  background: linear-gradient(135deg, #2C3E50 0%, #0a111a 100%); /* Dark blue gradient */
  color: #ffffff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-promotions-deposit-bonus__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-promotions-deposit-bonus__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions-deposit-bonus__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold */
  color: #2C3E50; /* Dark blue for contrast */
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions-deposit-bonus__cta-button:hover {
  background-color: #e6c200; /* Slightly darker gold */
  transform: translateY(-3px);
}

/* General Section Styling */
.page-promotions-deposit-bonus__section {
  padding: 60px 0;
}

.page-promotions-deposit-bonus__section:nth-of-type(even) {
  background-color: #e0e0e0; /* Light grey for alternating sections */
}

.page-promotions-deposit-bonus__section-title {
  font-size: 2.5em;
  color: #2C3E50;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-promotions-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-promotions-deposit-bonus__section-intro {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
  color: #555;
}

/* Why Choose Section */
.page-promotions-deposit-bonus__why-choose .page-promotions-deposit-bonus__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

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

.page-promotions-deposit-bonus__grid-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-promotions-deposit-bonus__icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 3px 5px rgba(0,0,0,0.2));
}

.page-promotions-deposit-bonus__grid-item h3 {
  color: #2C3E50;
  font-size: 1.5em;
  margin-bottom: 15px;
}

.page-promotions-deposit-bonus__grid-item p {
  color: #555;
  font-size: 1em;
}

/* Bonus Types Section */
.page-promotions-deposit-bonus__promo-card {
  display: flex;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 40px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.page-promotions-deposit-bonus__promo-card:hover {
  transform: translateY(-5px);
}

.page-promotions-deposit-bonus__promo-card--reverse {
  flex-direction: row-reverse;
}

.page-promotions-deposit-bonus__promo-image {
  width: 40%;
  object-fit: cover;
  min-height: 250px;
}

.page-promotions-deposit-bonus__promo-content {
  width: 60%;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.page-promotions-deposit-bonus__promo-content h3 {
  font-size: 2em;
  color: #2C3E50;
  margin-bottom: 15px;
}

.page-promotions-deposit-bonus__promo-content p {
  font-size: 1.1em;
  color: #555;
  margin-bottom: 25px;
}

.page-promotions-deposit-bonus__button {
  display: inline-block;
  background-color: #FFD700; /* Gold */
  color: #2C3E50; /* Dark blue for contrast */
  padding: 10px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

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

/* How to Claim Section */
.page-promotions-deposit-bonus__steps-list {
  list-style: none;
  padding: 0;
  margin: 50px 0;
  counter-reset: step-counter;
}

.page-promotions-deposit-bonus__steps-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  position: relative;
  background-color: #ffffff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.page-promotions-deposit-bonus__step-number {
  counter-increment: step-counter;
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 50%;
  background-color: #FFD700; /* Gold */
  color: #2C3E50; /* Dark blue */
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8em;
  font-weight: bold;
  margin-right: 25px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.2);
}

.page-promotions-deposit-bonus__step-content h3 {
  font-size: 1.8em;
  color: #2C3E50;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-promotions-deposit-bonus__step-content p {
  font-size: 1.1em;
  color: #555;
  margin-bottom: 15px;
}

.page-promotions-deposit-bonus__button--small {
  padding: 8px 20px;
  font-size: 0.9em;
}

/* Terms & Conditions Section */
.page-promotions-deposit-bonus__terms-content h3 {
  font-size: 1.7em;
  color: #2C3E50;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-promotions-deposit-bonus__terms-content p {
  font-size: 1.1em;
  color: #555;
  margin-bottom: 20px;
}

/* Responsible Gambling Section */
.page-promotions-deposit-bonus__responsible-gambling {
  background-color: #2C3E50; /* Dark blue */
  color: #ffffff;
  text-align: center;
}

.page-promotions-deposit-bonus__responsible-gambling .page-promotions-deposit-bonus__section-title {
  color: #ffffff;
}

.page-promotions-deposit-bonus__responsible-gambling .page-promotions-deposit-bonus__section-title::after {
  background-color: #FFD700;
}

.page-promotions-deposit-bonus__responsible-gambling p {
  font-size: 1.1em;
  max-width: 800px;
  margin: 0 auto;
}

/* FAQ Section */
.page-promotions-deposit-bonus__faq-list {
  margin-top: 40px;
}

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

.page-promotions-deposit-bonus__faq-question {
  font-size: 1.5em;
  color: #2C3E50;
  padding: 20px 25px;
  margin: 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f0f0f0;
  transition: background-color 0.3s ease;
  border-bottom: 1px solid #e0e0e0;
}

.page-promotions-deposit-bonus__faq-question:hover {
  background-color: #e5e5e5;
}

.page-promotions-deposit-bonus__faq-question::after {
  content: '+';
  font-size: 1.5em;
  font-weight: bold;
  color: #FFD700;
  transition: transform 0.3s ease;
}

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

.page-promotions-deposit-bonus__faq-answer {
  padding: 0 25px;
  font-size: 1.1em;
  color: #555;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page-promotions-deposit-bonus__faq-answer p {
  padding-top: 15px;
  padding-bottom: 15px;
  margin: 0;
}

.page-promotions-deposit-bonus__faq-answer.active {
  max-height: 500px; /* Adjust as needed for content */
  padding-bottom: 25px;
}

/* Final CTA Section */
.page-promotions-deposit-bonus__final-cta {
  padding: 80px 0;
  background: #2C3E50; /* Dark blue */
  color: #ffffff;
  text-align: center;
}

.page-promotions-deposit-bonus__final-cta .page-promotions-deposit-bonus__section-title {
  color: #ffffff;
}

.page-promotions-deposit-bonus__final-cta .page-promotions-deposit-bonus__section-title::after {
  background-color: #FFD700;
}

.page-promotions-deposit-bonus__final-cta-description {
  font-size: 1.3em;
  max-width: 900px;
  margin: 0 auto 40px auto;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-promotions-deposit-bonus__hero-title {
    font-size: 2.8em;
  }
  .page-promotions-deposit-bonus__section-title {
    font-size: 2em;
  }
  .page-promotions-deposit-bonus__promo-card {
    flex-direction: column;
  }
  .page-promotions-deposit-bonus__promo-card--reverse {
    flex-direction: column;
  }
  .page-promotions-deposit-bonus__promo-image,
  .page-promotions-deposit-bonus__promo-content {
    width: 100%;
  }
  .page-promotions-deposit-bonus__promo-content {
    padding: 30px;
  }
  .page-promotions-deposit-bonus__promo-content h3 {
    font-size: 1.7em;
  }
  .page-promotions-deposit-bonus__steps-list li {
    flex-direction: column;
    text-align: center;
  }
  .page-promotions-deposit-bonus__step-number {
    margin: 0 auto 20px auto;
  }
  .page-promotions-deposit-bonus__step-content h3 {
    font-size: 1.5em;
  }
}

@media (max-width: 768px) {
  .page-promotions-deposit-bonus__hero-section {
    padding: 80px 0;
  }
  .page-promotions-deposit-bonus__hero-title {
    font-size: 2.2em;
  }
  .page-promotions-deposit-bonus__hero-description {
    font-size: 1.1em;
  }
  .page-promotions-deposit-bonus__cta-button {
    font-size: 1em;
    padding: 12px 25px;
  }
  .page-promotions-deposit-bonus__section {
    padding: 40px 0;
  }
  .page-promotions-deposit-bonus__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-promotions-deposit-bonus__section-intro {
    font-size: 1em;
    margin-bottom: 30px;
  }
  .page-promotions-deposit-bonus__grid-item {
    padding: 20px;
  }
  .page-promotions-deposit-bonus__grid-item h3 {
    font-size: 1.3em;
  }
  .page-promotions-deposit-bonus__icon {
    width: 60px;
    height: 60px;
  }
  .page-promotions-deposit-bonus__promo-content {
    padding: 25px;
  }
  .page-promotions-deposit-bonus__promo-content h3 {
    font-size: 1.5em;
  }
  .page-promotions-deposit-bonus__promo-content p {
    font-size: 1em;
  }
  .page-promotions-deposit-bonus__button {
    padding: 8px 20px;
    font-size: 0.9em;
  }
  .page-promotions-deposit-bonus__step-number {
    width: 45px;
    height: 45px;
    min-width: 45px;
    font-size: 1.5em;
  }
  .page-promotions-deposit-bonus__step-content h3 {
    font-size: 1.3em;
  }
  .page-promotions-deposit-bonus__step-content p {
    font-size: 1em;
  }
  .page-promotions-deposit-bonus__terms-content h3 {
    font-size: 1.4em;
  }
  .page-promotions-deposit-bonus__terms-content p {
    font-size: 1em;
  }
  .page-promotions-deposit-bonus__faq-question {
    font-size: 1.2em;
    padding: 15px 20px;
  }
  .page-promotions-deposit-bonus__faq-answer p {
    font-size: 1em;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .page-promotions-deposit-bonus__final-cta {
    padding: 60px 0;
  }
  .page-promotions-deposit-bonus__final-cta-description {
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-promotions-deposit-bonus__hero-title {
    font-size: 1.8em;
  }
  .page-promotions-deposit-bonus__hero-description {
    font-size: 0.9em;
  }
  .page-promotions-deposit-bonus__cta-button {
    font-size: 0.9em;
    padding: 10px 20px;
  }
  .page-promotions-deposit-bonus__section-title {
    font-size: 1.5em;
  }
  .page-promotions-deposit-bonus__promo-content h3 {
    font-size: 1.3em;
  }
  .page-promotions-deposit-bonus__promo-content p {
    font-size: 0.9em;
  }
  .page-promotions-deposit-bonus__step-content h3 {
    font-size: 1.2em;
  }
  .page-promotions-deposit-bonus__step-content p {
    font-size: 0.9em;
  }
  .page-promotions-deposit-bonus__faq-question {
    font-size: 1em;
  }
  .page-promotions-deposit-bonus__final-cta-description {
    font-size: 1em;
  }
}