.page-promotions-bonuses {
  color: #333333; /* Dark text for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-promotions-bonuses__hero-section {
  padding: 60px 20px;
  padding-top: 10px;
  text-align: center;
  background-color: #000000; /* Main color for hero background */
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-promotions-bonuses__hero-image {
  width: 100%;
  max-width: 1920px;
  margin-bottom: 20px;
}

.page-promotions-bonuses__hero-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-promotions-bonuses__hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.page-promotions-bonuses__main-title {
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.2;
  color: #FCBC45; /* Highlight color for main title */
}

.page-promotions-bonuses__intro-text {
  font-size: 1.1rem;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions-bonuses__cta-button {
  display: inline-block;
  background-color: #FCBC45; /* Login color for CTA */
  color: #000000; /* Dark text on light button */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-promotions-bonuses__cta-button:hover {
  background-color: #FCBC45;
  opacity: 0.9;
}

.page-promotions-bonuses__cta-button--centered {
  margin-top: 30px;
}

.page-promotions-bonuses__section {
  padding: 40px 20px;
  background-color: #FFFFFF;
}

.page-promotions-bonuses__understanding-promos {
  background-color: #F8F8F8;
}

.page-promotions-bonuses__container {
  max-width: 1200px;
  margin: 0 auto;
}

.page-promotions-bonuses__section-title {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: #000000;
}

.page-promotions-bonuses__section-description {
  font-size: 1rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #555555;
}

.page-promotions-bonuses__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

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

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

.page-promotions-bonuses__card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
}

.page-promotions-bonuses__card-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #000000;
}

.page-promotions-bonuses__card-text {
  font-size: 0.95rem;
  color: #666666;
  margin-bottom: 20px;
}

.page-promotions-bonuses__card-button {
  display: inline-block;
  background-color: #000000; /* Main color for card buttons */
  color: #FFFFFF; /* White text on dark button */
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-promotions-bonuses__card-button:hover {
  background-color: #333333;
}

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

.page-promotions-bonuses__step-item {
  text-align: center;
  padding: 20px;
  background-color: #FDFDFD;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-promotions-bonuses__step-icon {
  font-size: 2.5rem;
  font-weight: bold;
  color: #FCBC45;
  margin-bottom: 15px;
}

.page-promotions-bonuses__step-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #000000;
}

.page-promotions-bonuses__step-text {
  font-size: 0.9rem;
  color: #777777;
}

.page-promotions-bonuses__promo-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 40px;
}

.page-promotions-bonuses__promo-item {
  display: flex;
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.page-promotions-bonuses__promo-image {
  width: 40%;
  height: auto;
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

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

.page-promotions-bonuses__promo-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #000000;
}

.page-promotions-bonuses__promo-text {
  font-size: 1rem;
  color: #666666;
  margin-bottom: 20px;
}

.page-promotions-bonuses__promo-button {
  display: inline-block;
  background-color: #FCBC45; /* Login color for promo buttons */
  color: #000000;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  align-self: flex-start;
}

.page-promotions-bonuses__promo-button:hover {
  background-color: #FCBC45;
  opacity: 0.9;
}

.page-promotions-bonuses__text-link {
  color: #000000;
  text-decoration: underline;
  display: block;
  text-align: center;
  margin-top: 20px;
}

.page-promotions-bonuses__text-link:hover {
  color: #FCBC45;
}

.page-promotions-bonuses__why-choose-us {
  background-color: #000000; /* Main color for this section */
  color: #FFFFFF;
}

.page-promotions-bonuses__why-choose-us .page-promotions-bonuses__section-title,
.page-promotions-bonuses__why-choose-us .page-promotions-bonuses__section-description {
  color: #FFFFFF;
}

.page-promotions-bonuses__features-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.page-promotions-bonuses__features-list li {
  display: flex;
  align-items: center;
  font-size: 1.1rem;
  color: #F0F0F0;
}

.page-promotions-bonuses__feature-icon {
  width: 48px;
  height: 48px;
  margin-right: 15px;
  flex-shrink: 0;
  min-width: 48px;
  min-height: 48px;
}

.page-promotions-bonuses__faq {
  background-color: #F8F8F8;
}

.page-promotions-bonuses__accordion {
  margin-top: 30px;
}

.page-promotions-bonuses__accordion-item {
  background-color: #FFFFFF;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-promotions-bonuses__accordion-header {
  background-color: #FCBC45;
  color: #000000;
  padding: 15px 20px;
  width: 100%;
  text-align: left;
  border: none;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.page-promotions-bonuses__accordion-header:hover {
  background-color: #FCBC45;
  opacity: 0.9;
}

.page-promotions-bonuses__accordion-content {
  padding: 15px 20px;
  border-top: 1px solid #E0E0E0;
  font-size: 0.95rem;
  color: #555555;
  display: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-promotions-bonuses__main-title {
    font-size: clamp(1.5rem, 7vw, 2.2rem);
  }

  .page-promotions-bonuses__intro-text {
    font-size: 1rem;
  }

  .page-promotions-bonuses__section-title {
    font-size: 1.7rem;
  }

  .page-promotions-bonuses__promo-item {
    flex-direction: column;
  }

  .page-promotions-bonuses__promo-image,
  .page-promotions-bonuses__promo-content {
    width: 100%;
  }
  
  .page-promotions-bonuses__promo-image {
    height: 250px;
  }

  .page-promotions-bonuses__promo-button {
    align-self: center;
    width: 100%;
    text-align: center;
  }

  .page-promotions-bonuses__hero-image img,
  .page-promotions-bonuses__card-image,
  .page-promotions-bonuses__promo-image {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-promotions-bonuses__hero-section {
    padding: 40px 15px;
    padding-top: 10px;
  }

  .page-promotions-bonuses__section {
    padding: 30px 15px;
  }

  .page-promotions-bonuses__main-title {
    font-size: clamp(1.2rem, 8vw, 1.8rem);
  }

  .page-promotions-bonuses__cta-button {
    padding: 12px 20px;
  }

  .page-promotions-bonuses__card-title {
    font-size: 1.2rem;
  }

  .page-promotions-bonuses__promo-title {
    font-size: 1.3rem;
  }

  .page-promotions-bonuses__features-list li {
    font-size: 1rem;
  }

  .page-promotions-bonuses__accordion-header {
    font-size: 1rem;
    padding: 12px 15px;
  }
}