/* style/promotions-rescue-bonus.css */
.page-promotions-rescue-bonus {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* White text on dark background */
  background-color: #000000; /* Main dark background */
}

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

.page-promotions-rescue-bonus__container--grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 768px) {
  .page-promotions-rescue-bonus__container--grid {
    grid-template-columns: 1fr 1fr;
  }
  .page-promotions-rescue-bonus__container--grid-reverse {
    grid-template-columns: 1fr 1fr;
    direction: rtl; /* For content-image order */
  }
  .page-promotions-rescue-bonus__container--grid-reverse > *:first-child {
    direction: ltr; /* Reset text direction */
  }
  .page-promotions-rescue-bonus__container--grid-reverse > *:last-child {
    direction: ltr; /* Reset text direction */
  }
}

.page-promotions-rescue-bonus__hero-section {
  background: linear-gradient(135deg, #000000, #333333);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-promotions-rescue-bonus__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

.page-promotions-rescue-bonus__section {
  padding: 60px 0;
}

.page-promotions-rescue-bonus__section--dark {
  background-color: #1a1a1a;
}

.page-promotions-rescue-bonus__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for section titles */
  margin-bottom: 30px;
  text-align: left;
}

.page-promotions-rescue-bonus__section-title--center {
  text-align: center;
}

.page-promotions-rescue-bonus__section-description {
  font-size: 1.1em;
  margin-bottom: 40px;
  color: #e0e0e0;
  text-align: center;
}

.page-promotions-rescue-bonus__content-block p {
  margin-bottom: 15px;
  color: #e0e0e0;
}

.page-promotions-rescue-bonus__content-block a {
  color: #FFD700;
  text-decoration: none;
}

.page-promotions-rescue-bonus__content-block a:hover {
  text-decoration: underline;
}

.page-promotions-rescue-bonus__subtitle {
  font-size: 1.8em;
  color: #FFD700;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-promotions-rescue-bonus__list,
.page-promotions-rescue-bonus__numbered-list {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #e0e0e0;
}

.page-promotions-rescue-bonus__numbered-list {
  list-style-type: decimal;
}

.page-promotions-rescue-bonus__list li,
.page-promotions-rescue-bonus__numbered-list li {
  margin-bottom: 10px;
}

.page-promotions-rescue-bonus__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-promotions-rescue-bonus__btn--primary {
  background-color: #FFD700; /* Gold button */
  color: #000000; /* Black text */
}

.page-promotions-rescue-bonus__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-promotions-rescue-bonus__btn--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
  margin-top: 20px;
}

.page-promotions-rescue-bonus__btn--secondary:hover {
  background-color: #FFD700;
  color: #000000;
  transform: translateY(-2px);
}

.page-promotions-rescue-bonus__image-wrapper {
  text-align: center;
}

.page-promotions-rescue-bonus__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

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

.page-promotions-rescue-bonus__card {
  background-color: #0a0a0a;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  text-align: center;
  transition: transform 0.3s ease;
  border: 1px solid #333;
}

.page-promotions-rescue-bonus__card:hover {
  transform: translateY(-5px);
}

.page-promotions-rescue-bonus__card-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-promotions-rescue-bonus__card-text {
  color: #cccccc;
}

.page-promotions-rescue-bonus__faq-section {
  background-color: #000000;
}

.page-promotions-rescue-bonus__faq-items {
  margin-top: 40px;
}

.page-promotions-rescue-bonus__faq-item {
  background-color: #0a0a0a;
  border: 1px solid #333;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 25px;
}

.page-promotions-rescue-bonus__faq-question {
  font-size: 1.3em;
  color: #FFD700;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-promotions-rescue-bonus__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  transition: transform 0.3s ease;
}

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

.page-promotions-rescue-bonus__faq-answer {
  color: #cccccc;
  margin-top: 15px;
  display: none;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.4s ease-out, max-height 0.4s ease-out;
}

.page-promotions-rescue-bonus__faq-answer.active {
  display: block;
  opacity: 1;
  max-height: 200px; /* Adjust as needed */
}

.page-promotions-rescue-bonus__cta-section {
  background: linear-gradient(45deg, #000000, #333333);
  padding: 80px 0;
  text-align: center;
  border-top: 5px solid #FFD700;
}

.page-promotions-rescue-bonus__cta-title {
  font-size: 3em;
  color: #FFD700;
  margin-bottom: 20px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-promotions-rescue-bonus__cta-description {
  font-size: 1.2em;
  max-width: 900px;
  margin: 0 auto 40px;
  color: #e0e0e0;
}

@media (max-width: 992px) {
  .page-promotions-rescue-bonus__hero-title {
    font-size: 2.8em;
  }
  .page-promotions-rescue-bonus__section-title {
    font-size: 2em;
  }
  .page-promotions-rescue-bonus__cta-title {
    font-size: 2.5em;
  }
}

@media (max-width: 767px) {
  .page-promotions-rescue-bonus__hero-section,
  .page-promotions-rescue-bonus__section,
  .page-promotions-rescue-bonus__cta-section {
    padding: 50px 0;
  }
  .page-promotions-rescue-bonus__hero-title {
    font-size: 2.2em;
  }
  .page-promotions-rescue-bonus__section-title {
    font-size: 1.8em;
    text-align: center;
  }
  .page-promotions-rescue-bonus__subtitle {
    font-size: 1.5em;
  }
  .page-promotions-rescue-bonus__cta-title {
    font-size: 2em;
  }
  .page-promotions-rescue-bonus__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-promotions-rescue-bonus__container--grid,
  .page-promotions-rescue-bonus__container--grid-reverse {
    grid-template-columns: 1fr;
  }
  .page-promotions-rescue-bonus__container--grid-reverse > *:first-child {
    order: 2;
  }
  .page-promotions-rescue-bonus__container--grid-reverse > *:last-child {
    order: 1;
  }
}

@media (max-width: 480px) {
  .page-promotions-rescue-bonus__hero-title {
    font-size: 1.8em;
  }
  .page-promotions-rescue-bonus__hero-description {
    font-size: 1em;
  }
  .page-promotions-rescue-bonus__section-title {
    font-size: 1.5em;
  }
  .page-promotions-rescue-bonus__card-title {
    font-size: 1.3em;
  }
  .page-promotions-rescue-bonus__cta-title {
    font-size: 1.8em;
  }
}