.page-promotions-deposit-bonus {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f9fa;
}

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

/* Hero Section */
.page-promotions-deposit-bonus__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, #0047AB 0%, #0028ff 100%); /* Adjusted for better contrast with gold */
  color: #ffffff;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.page-promotions-deposit-bonus__hero-content {
  z-index: 1;
  max-width: 900px;
}

.page-promotions-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.3);
}

.page-promotions-deposit-bonus__hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  color: #ffffff;
}

.page-promotions-deposit-bonus__hero-cta {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #0047AB; /* Royal Blue text */
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 2px solid #FFD700;
}

.page-promotions-deposit-bonus__hero-cta:hover {
  background-color: #e6c200; /* Darker gold on hover */
  transform: translateY(-3px);
}

.page-promotions-deposit-bonus__hero-image-wrapper {
  position: absolute;
  bottom: 0;
  right: -10%;
  opacity: 0.2;
  z-index: 0;
  max-width: 600px;
}

.page-promotions-deposit-bonus__hero-image {
  width: 100%;
  height: auto;
}

/* General Section Styling */
.page-promotions-deposit-bonus__section {
  padding: 60px 0;
  background-color: #ffffff;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.page-promotions-deposit-bonus__section:nth-child(even) {
  background-color: #eef2f6;
}

.page-promotions-deposit-bonus__section-title {
  font-size: 2.5em;
  color: #0047AB; /* Royal Blue */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 10px;
}

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

.page-promotions-deposit-bonus__introduction p {
  font-size: 1.1em;
  text-align: justify;
  margin-bottom: 15px;
}

/* Bonus Types Grid */
.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__card {
  background-color: #fefefe;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-promotions-deposit-bonus__card-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-promotions-deposit-bonus__card-title {
  font-size: 1.6em;
  color: #0047AB;
  margin-bottom: 15px;
}

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

.page-promotions-deposit-bonus__card-cta {
  display: inline-block;
  background-color: #0047AB;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-promotions-deposit-bonus__card-cta:hover {
  background-color: #0028ff;
}

/* How It Works Section */
.page-promotions-deposit-bonus__info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.page-promotions-deposit-bonus__info-item {
  background-color: #fefefe;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border-left: 5px solid #FFD700;
}

.page-promotions-deposit-bonus__info-title {
  font-size: 1.4em;
  color: #0047AB;
  margin-bottom: 15px;
}

.page-promotions-deposit-bonus__info-item p {
  color: #555;
}

.page-promotions-deposit-bonus__cta-block {
  text-align: center;
  margin-top: 50px;
  padding: 30px;
  background-color: #0047AB;
  border-radius: 10px;
  color: #ffffff;
}

.page-promotions-deposit-bonus__cta-block p {
  font-size: 1.3em;
  margin-bottom: 25px;
  color: #FFD700;
}

.page-promotions-deposit-bonus__main-cta {
  display: inline-block;
  background-color: #FFD700;
  color: #0047AB;
  padding: 18px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.4em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 2px solid #FFD700;
}

.page-promotions-deposit-bonus__main-cta:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

/* How To Claim Section */
.page-promotions-deposit-bonus__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-promotions-deposit-bonus__step {
  background-color: #fefefe;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  text-align: center;
  position: relative;
}

.page-promotions-deposit-bonus__step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: #0047AB;
  color: #FFD700;
  border-radius: 50%;
  font-size: 2em;
  font-weight: bold;
  margin: -60px auto 20px auto;
  border: 4px solid #FFD700;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions-deposit-bonus__step-title {
  font-size: 1.5em;
  color: #0047AB;
  margin-bottom: 15px;
}

.page-promotions-deposit-bonus__step p {
  color: #555;
}

.page-promotions-deposit-bonus__step a {
  color: #0047AB;
  text-decoration: underline;
  font-weight: bold;
}

.page-promotions-deposit-bonus__step a:hover {
  color: #0028ff;
}

.page-promotions-deposit-bonus__secondary-cta {
  display: inline-block;
  background-color: #FFD700;
  color: #0047AB;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  margin-top: 40px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 2px solid #FFD700;
}

.page-promotions-deposit-bonus__secondary-cta:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

/* Tips Section */
.page-promotions-deposit-bonus__tip-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-promotions-deposit-bonus__tip-list li {
  background-color: #fefefe;
  border-left: 5px solid #0047AB;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  font-size: 1.1em;
  color: #444;
}

.page-promotions-deposit-bonus__tip-list li strong {
  color: #0047AB;
}

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

.page-promotions-deposit-bonus__accordion-item {
  background-color: #fefefe;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-promotions-deposit-bonus__accordion-header {
  background-color: #0047AB;
  color: #FFD700;
  padding: 20px;
  cursor: pointer;
  font-size: 1.3em;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.page-promotions-deposit-bonus__accordion-header::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-promotions-deposit-bonus__accordion-header.active {
  background-color: #0028ff;
}

.page-promotions-deposit-bonus__accordion-header.active::after {
  transform: rotate(45deg);
}

.page-promotions-deposit-bonus__accordion-content {
  padding: 0 20px;
  background-color: #fefefe;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-promotions-deposit-bonus__accordion-content.open {
  max-height: 200px; /* Adjust as needed */
  padding: 20px;
}

.page-promotions-deposit-bonus__accordion-content p {
  color: #555;
}

/* Conclusion Section */
.page-promotions-deposit-bonus__conclusion p {
  font-size: 1.1em;
  text-align: justify;
  margin-bottom: 15px;
}

.page-promotions-deposit-bonus__final-cta-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 50px;
}

.page-promotions-deposit-bonus__final-cta {
  display: inline-block;
  padding: 18px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.3em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}

.page-promotions-deposit-bonus__final-cta--primary {
  background-color: #FFD700;
  color: #0047AB;
  border: 2px solid #FFD700;
}

.page-promotions-deposit-bonus__final-cta--primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-promotions-deposit-bonus__final-cta--secondary {
  background-color: transparent;
  color: #0047AB;
  border: 2px solid #0047AB;
}

.page-promotions-deposit-bonus__final-cta--secondary:hover {
  background-color: #0047AB;
  color: #FFD700;
  transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-promotions-deposit-bonus__hero-title {
    font-size: 2.8em;
  }
  .page-promotions-deposit-bonus__hero-subtitle {
    font-size: 1.3em;
  }
  .page-promotions-deposit-bonus__section-title {
    font-size: 2em;
  }
  .page-promotions-deposit-bonus__hero-image-wrapper {
    display: none;
  }
}

@media (max-width: 768px) {
  .page-promotions-deposit-bonus__hero {
    padding: 60px 15px;
  }
  .page-promotions-deposit-bonus__hero-title {
    font-size: 2.2em;
  }
  .page-promotions-deposit-bonus__hero-subtitle {
    font-size: 1.1em;
  }
  .page-promotions-deposit-bonus__hero-cta, .page-promotions-deposit-bonus__main-cta, .page-promotions-deposit-bonus__final-cta {
    font-size: 1.1em;
    padding: 12px 25px;
  }
  .page-promotions-deposit-bonus__grid, .page-promotions-deposit-bonus__info-grid, .page-promotions-deposit-bonus__steps-grid {
    grid-template-columns: 1fr;
  }
  .page-promotions-deposit-bonus__card, .page-promotions-deposit-bonus__info-item, .page-promotions-deposit-bonus__step {
    padding: 25px;
  }
  .page-promotions-deposit-bonus__step-number {
    margin: -50px auto 15px auto;
  }
  .page-promotions-deposit-bonus__accordion-header {
    font-size: 1.1em;
    padding: 15px;
  }
  .page-promotions-deposit-bonus__final-cta-group {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .page-promotions-deposit-bonus__hero-title {
    font-size: 1.8em;
  }
  .page-promotions-deposit-bonus__hero-subtitle {
    font-size: 1em;
  }
  .page-promotions-deposit-bonus__section-title {
    font-size: 1.8em;
  }
  .page-promotions-deposit-bonus__card-title {
    font-size: 1.4em;
  }
  .page-promotions-deposit-bonus__info-title {
    font-size: 1.2em;
  }
  .page-promotions-deposit-bonus__cta-block p {
    font-size: 1.1em;
  }
}