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

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

.page-promotions-deposit-bonus h1, .page-promotions-deposit-bonus h2, .page-promotions-deposit-bonus h3 {
  color: #0056b3; /* Darker shade of main color for contrast */
  margin-bottom: 20px;
  text-align: center;
}

.page-promotions-deposit-bonus h1 {
  font-size: 2.8em;
  font-weight: bold;
  line-height: 1.2;
}

.page-promotions-deposit-bonus h2 {
  font-size: 2.2em;
  margin-top: 40px;
  position: relative;
  padding-bottom: 10px;
}

.page-promotions-deposit-bonus h2::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 80px;
  height: 4px;
  background-color: #ffc107; /* Auxiliary color for emphasis */
  border-radius: 2px;
}

.page-promotions-deposit-bonus h3 {
  font-size: 1.6em;
  color: #007bff;
  margin-top: 30px;
}

.page-promotions-deposit-bonus p {
  margin-bottom: 15px;
  text-align: justify;
}

.page-promotions-deposit-bonus .btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  text-align: center;
}

.page-promotions-deposit-bonus .btn-primary {
  background-color: #007bff;
  color: #ffffff;
  border: 2px solid #007bff;
}

.page-promotions-deposit-bonus .btn-primary:hover {
  background-color: #0056b3;
  border-color: #0056b3;
  transform: translateY(-2px);
}

.page-promotions-deposit-bonus .btn-secondary {
  background-color: #ffc107;
  color: #333;
  border: 2px solid #ffc107;
}

.page-promotions-deposit-bonus .btn-secondary:hover {
  background-color: #e0a800;
  border-color: #e0a800;
  transform: translateY(-2px);
}

.page-promotions-deposit-bonus .btn-large {
  padding: 15px 35px;
  font-size: 1.1em;
}

.page-promotions-deposit-bonus .hero-section {
  background: linear-gradient(135deg, #007bff, #4da3ff);
  color: #ffffff;
  padding: 100px 0;
  text-align: center;
}

.page-promotions-deposit-bonus .hero-section p {
  max-width: 800px;
  margin: 20px auto 40px;
  font-size: 1.1em;
  text-align: center;
}

.page-promotions-deposit-bonus .why-choose-section, 
.page-promotions-deposit-bonus .promotion-details-section, 
.page-promotions-deposit-bonus .terms-conditions-section, 
.page-promotions-deposit-bonus .how-to-claim-section, 
.page-promotions-deposit-bonus .tips-section, 
.page-promotions-deposit-bonus .commitment-section, 
.page-promotions-deposit-bonus .cta-section {
  padding: 60px 0;
  background-color: #ffffff;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-promotions-deposit-bonus .why-choose-section {
  padding-top: 80px;
}

.page-promotions-deposit-bonus .feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-promotions-deposit-bonus .feature-item {
  text-align: center;
  padding: 25px;
  background-color: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.page-promotions-deposit-bonus .feature-item .feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.page-promotions-deposit-bonus .feature-item h3 {
  color: #007bff;
  margin-top: 0;
  font-size: 1.4em;
}

.page-promotions-deposit-bonus .promotion-card {
  background-color: #eaf6ff; /* Light blue background */
  border-left: 5px solid #007bff;
  padding: 30px;
  margin-bottom: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.page-promotions-deposit-bonus .promotion-card h3 {
  color: #0056b3;
  text-align: left;
  margin-top: 0;
  margin-bottom: 15px;
}

.page-promotions-deposit-bonus .promotion-card ul {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.page-promotions-deposit-bonus .promotion-card ul li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
  color: #555;
}

.page-promotions-deposit-bonus .promotion-card ul li::before {
  content: '✔';
  color: #ffc107;
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
}

.page-promotions-deposit-bonus .promotion-card .btn {
  margin-top: 20px;
  float: right; /* Align button to the right */
}

.page-promotions-deposit-bonus .promotion-card::after { /* Clearfix for floated button */
  content: '';
  display: table;
  clear: both;
}

.page-promotions-deposit-bonus .terms-conditions-section .accordion {
  margin-top: 40px;
}

.page-promotions-deposit-bonus .accordion-item {
  background-color: #f0f8ff;
  border: 1px solid #cceeff;
  border-radius: 8px;
  margin-bottom: 10px;
  overflow: hidden;
}

.page-promotions-deposit-bonus .accordion-header {
  background-color: #007bff;
  color: white;
  padding: 18px 25px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  cursor: pointer;
  font-size: 1.1em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.page-promotions-deposit-bonus .accordion-header:hover {
  background-color: #0056b3;
}

.page-promotions-deposit-bonus .accordion-header::after {
  content: '+';
  font-weight: bold;
  font-size: 1.2em;
}

.page-promotions-deposit-bonus .accordion-header.active::after {
  content: '-';
}

.page-promotions-deposit-bonus .accordion-content {
  padding: 0 25px;
  background-color: #ffffff;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-promotions-deposit-bonus .accordion-content.show {
  max-height: 500px; /* Adjust as needed for content length */
  padding: 15px 25px 25px;
}

.page-promotions-deposit-bonus .how-to-claim-section ol {
  list-style: none;
  counter-reset: my-awesome-counter;
  padding: 0;
  margin-top: 30px;
}

.page-promotions-deposit-bonus .how-to-claim-section ol li {
  counter-increment: my-awesome-counter;
  margin-bottom: 20px;
  padding-left: 50px;
  position: relative;
  font-size: 1.1em;
  color: #444;
}

.page-promotions-deposit-bonus .how-to-claim-section ol li::before {
  content: counter(my-awesome-counter);
  background-color: #ffc107;
  color: #333;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.page-promotions-deposit-bonus .how-to-claim-section ol li a {
  color: #007bff;
  text-decoration: underline;
}

.page-promotions-deposit-bonus .how-to-claim-section .btn {
  margin-top: 30px;
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions-deposit-bonus .tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-promotions-deposit-bonus .tip-item {
  text-align: center;
  padding: 25px;
  background-color: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.page-promotions-deposit-bonus .tip-item .tip-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.page-promotions-deposit-bonus .tip-item h3 {
  color: #007bff;
  margin-top: 0;
  font-size: 1.4em;
}

.page-promotions-deposit-bonus .commitment-section {
  text-align: center;
}

.page-promotions-deposit-bonus .commitment-section p {
  max-width: 800px;
  margin: 0 auto 30px;
}

.page-promotions-deposit-bonus .commitment-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-promotions-deposit-bonus .cta-section {
  text-align: center;
  background: linear-gradient(90deg, #007bff, #0056b3);
  color: #ffffff;
  padding: 80px 0;
  border-radius: 8px;
}

.page-promotions-deposit-bonus .cta-section h2 {
  color: #ffffff;
  margin-bottom: 25px;
}

.page-promotions-deposit-bonus .cta-section p {
  font-size: 1.1em;
  max-width: 700px;
  margin: 0 auto 40px;
}

@media (max-width: 768px) {
  .page-promotions-deposit-bonus h1 {
    font-size: 2.2em;
  }

  .page-promotions-deposit-bonus h2 {
    font-size: 1.8em;
  }

  .page-promotions-deposit-bonus h3 {
    font-size: 1.3em;
  }

  .page-promotions-deposit-bonus .hero-section {
    padding: 80px 0;
  }

  .page-promotions-deposit-bonus .why-choose-section, 
  .page-promotions-deposit-bonus .promotion-details-section, 
  .page-promotions-deposit-bonus .terms-conditions-section, 
  .page-promotions-deposit-bonus .how-to-claim-section, 
  .page-promotions-deposit-bonus .tips-section, 
  .page-promotions-deposit-bonus .commitment-section, 
  .page-promotions-deposit-bonus .cta-section {
    padding: 40px 0;
  }

  .page-promotions-deposit-bonus .feature-grid, .page-promotions-deposit-bonus .tips-grid {
    grid-template-columns: 1fr;
  }

  .page-promotions-deposit-bonus .promotion-card .btn {
    float: none;
    display: block;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 480px) {
  .page-promotions-deposit-bonus h1 {
    font-size: 1.8em;
  }

  .page-promotions-deposit-bonus h2 {
    font-size: 1.6em;
  }

  .page-promotions-deposit-bonus .hero-section p {
    font-size: 1em;
  }

  .page-promotions-deposit-bonus .btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }
}