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

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

.page-promotions-re-deposit-bonus__hero-section {
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-promotions-re-deposit-bonus__main-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  color: #ffffff;
}

.page-promotions-re-deposit-bonus__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 30px;
  color: #e0e0e0;
}

.page-promotions-re-deposit-bonus__cta-button {
  display: inline-block;
  background-color: #ffc107;
  color: #212529;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-promotions-re-deposit-bonus__cta-button:hover {
  background-color: #e0a800;
  transform: translateY(-2px);
}

.page-promotions-re-deposit-bonus__cta-button--primary {
  background-color: #007bff;
  color: #ffffff;
}

.page-promotions-re-deposit-bonus__cta-button--primary:hover {
  background-color: #0056b3;
}

.page-promotions-re-deposit-bonus__cta-button--secondary {
  background-color: #ffc107;
  color: #212529;
}

.page-promotions-re-deposit-bonus__cta-button--secondary:hover {
  background-color: #e0a800;
}

.page-promotions-re-deposit-bonus__cta-button--alt {
  background-color: #6c757d;
  color: #ffffff;
  margin-left: 15px;
}

.page-promotions-re-deposit-bonus__cta-button--alt:hover {
  background-color: #5a6268;
}

.page-promotions-re-deposit-bonus__cta-button--large {
  padding: 18px 40px;
  font-size: 1.3em;
}

.page-promotions-re-deposit-bonus__content-section {
  padding: 60px 0;
  background-color: #ffffff;
}

.page-promotions-re-deposit-bonus__section-title {
  font-size: 2.2em;
  color: #007bff;
  margin-bottom: 30px;
  text-align: center;
  font-weight: bold;
  position: relative;
  padding-bottom: 15px;
}

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

.page-promotions-re-deposit-bonus__subsection-title {
  font-size: 1.6em;
  color: #0056b3;
  margin-top: 40px;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promotions-re-deposit-bonus__content-section p {
  margin-bottom: 15px;
  color: #495057;
  font-size: 1.05em;
}

.page-promotions-re-deposit-bonus__content-section strong {
  color: #007bff;
}

.page-promotions-re-deposit-bonus__image-full-width {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 40px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.page-promotions-re-deposit-bonus__image-small {
  max-width: 600px;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.page-promotions-re-deposit-bonus__button-group {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 40px;
}

.page-promotions-re-deposit-bonus__list {
  list-style: disc inside;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #495057;
}

.page-promotions-re-deposit-bonus__list li {
  margin-bottom: 10px;
  font-size: 1.05em;
}

.page-promotions-re-deposit-bonus__faq-container {
  margin-top: 40px;
  border-top: 1px solid #eee;
}

.page-promotions-re-deposit-bonus__faq-item {
  border-bottom: 1px solid #eee;
  padding: 20px 0;
}

.page-promotions-re-deposit-bonus__faq-question {
  font-size: 1.4em;
  color: #007bff;
  margin: 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-promotions-re-deposit-bonus__faq-question::after {
  content: '+';
  font-size: 1.2em;
  color: #ffc107;
  transition: transform 0.3s ease;
}

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

.page-promotions-re-deposit-bonus__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
  padding-left: 15px;
  color: #495057;
}

.page-promotions-re-deposit-bonus__faq-answer.active {
  max-height: 200px; /* Adjust as needed */
  padding-top: 15px;
}

.page-promotions-re-deposit-bonus__faq-answer p {
  margin: 0;
}

.page-promotions-re-deposit-bonus__final-cta {
  text-align: center;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px dashed #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-promotions-re-deposit-bonus__main-title {
    font-size: 2.2em;
  }

  .page-promotions-re-deposit-bonus__hero-description {
    font-size: 1em;
  }

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

  .page-promotions-re-deposit-bonus__subsection-title {
    font-size: 1.4em;
  }

  .page-promotions-re-deposit-bonus__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-promotions-re-deposit-bonus__cta-button--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }

  .page-promotions-re-deposit-bonus__button-group .page-promotions-re-deposit-bonus__cta-button {
    margin-left: 0;
    margin-bottom: 15px;
    display: block;
  }
}

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

  .page-promotions-re-deposit-bonus__hero-description {
    font-size: 0.9em;
  }

  .page-promotions-re-deposit-bonus__section-title {
    font-size: 1.6em;
  }

  .page-promotions-re-deposit-bonus__subsection-title {
    font-size: 1.2em;
  }

  .page-promotions-re-deposit-bonus__cta-button {
    padding: 10px 20px;
    font-size: 0.9em;
  }
}