.page-promotions-rebate-rules {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #E0E0E0; /* Light gray for body text on dark background */
  background-color: #0F1D2C; /* Darker background to contrast with main color */
}

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

.page-promotions-rebate-rules__hero-section {
  background: linear-gradient(135deg, #1A2B3C, #0F1D2C);
  padding: 100px 0;
  text-align: center;
  color: #FFD700; /* Gold for hero text */
  position: relative;
  overflow: hidden;
  border-bottom: 2px solid #FFD700;
}

.page-promotions-rebate-rules__hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(255, 215, 0, 0.1) 0%, rgba(26, 43, 60, 0) 70%);
  opacity: 0.3;
  animation: page-promotions-rebate-rules__hero-glow 15s infinite alternate;
}

@keyframes page-promotions-rebate-rules__hero-glow {
  0% { transform: scale(1); opacity: 0.3; }
  100% { transform: scale(1.2); opacity: 0.5; }
}

.page-promotions-rebate-rules__main-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
  font-weight: bold;
}

.page-promotions-rebate-rules__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #FFFFFF;
}

.page-promotions-rebate-rules__content-section {
  padding: 60px 0;
  background-color: #1A2B3C; /* Main dark blue-gray */
}

.page-promotions-rebate-rules__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 15px;
  position: relative;
}

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

.page-promotions-rebate-rules__sub-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-top: 40px;
  margin-bottom: 20px;
  border-left: 5px solid #FFD700;
  padding-left: 15px;
}

.page-promotions-rebate-rules__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #E0E0E0;
  line-height: 1.8;
}

.page-promotions-rebate-rules__paragraph strong {
  color: #FFD700;
}

.page-promotions-rebate-rules__list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-promotions-rebate-rules__list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
  font-size: 1.1em;
  color: #E0E0E0;
}

.page-promotions-rebate-rules__list li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: #FFD700;
  font-weight: bold;
}

.page-promotions-rebate-rules__image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  border: 1px solid #FFD700;
}

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

.page-promotions-rebate-rules__grid-item {
  background-color: #2E4057; /* Slightly lighter dark blue-gray */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-promotions-rebate-rules__grid-item:hover {
  transform: translateY(-10px);
  background-color: #3A506B;
}

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

.page-promotions-rebate-rules__item-description {
  font-size: 1em;
  color: #CCCCCC;
}

.page-promotions-rebate-rules__blockquote {
  background-color: #2E4057;
  border-left: 5px solid #FFD700;
  margin: 40px 0;
  padding: 20px 30px;
  font-style: italic;
  font-size: 1.2em;
  color: #FFFFFF;
  border-radius: 5px;
}

.page-promotions-rebate-rules__blockquote p {
  margin: 0;
  color: #FFFFFF;
}

.page-promotions-rebate-rules__table {
  width: 100%;
  border-collapse: collapse;
  margin: 40px 0;
  background-color: #2E4057;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions-rebate-rules__table th,
.page-promotions-rebate-rules__table td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid #3A506B;
  color: #E0E0E0;
}

.page-promotions-rebate-rules__table th {
  background-color: #3A506B;
  color: #FFD700;
  font-weight: bold;
  font-size: 1.1em;
}

.page-promotions-rebate-rules__table tr:last-child td {
  border-bottom: none;
}

.page-promotions-rebate-rules__table tbody tr:hover {
  background-color: #3A506B;
}

.page-promotions-rebate-rules__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
}

.page-promotions-rebate-rules__btn--primary {
  background-color: #FFD700;
  color: #1A2B3C;
  border: 2px solid #FFD700;
  margin-top: 20px;
}

.page-promotions-rebate-rules__btn--primary:hover {
  background-color: #E5C100;
  border-color: #E5C100;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
}

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

.page-promotions-rebate-rules__btn--secondary:hover {
  background-color: #FFD700;
  color: #1A2B3C;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
}

.page-promotions-rebate-rules__cta-block {
  background: linear-gradient(90deg, #1A2B3C, #2E4057);
  padding: 60px 40px;
  margin-top: 60px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  border: 1px solid #FFD700;
}

.page-promotions-rebate-rules__cta-title {
  font-size: 2.2em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-promotions-rebate-rules__cta-description {
  font-size: 1.2em;
  color: #FFFFFF;
  max-width: 900px;
  margin: 0 auto 30px;
}

.page-promotions-rebate-rules__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-promotions-rebate-rules__main-title {
    font-size: 2.5em;
  }

  .page-promotions-rebate-rules__hero-description,
  .page-promotions-rebate-rules__paragraph,
  .page-promotions-rebate-rules__list li,
  .page-promotions-rebate-rules__item-description {
    font-size: 1em;
  }

  .page-promotions-rebate-rules__section-title {
    font-size: 2em;
  }

  .page-promotions-rebate-rules__sub-title {
    font-size: 1.5em;
  }

  .page-promotions-rebate-rules__grid {
    grid-template-columns: 1fr;
  }

  .page-promotions-rebate-rules__btn {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-promotions-rebate-rules__btn--secondary {
    margin-left: 0;
    margin-top: 15px;
  }

  .page-promotions-rebate-rules__cta-title {
    font-size: 1.8em;
  }

  .page-promotions-rebate-rules__cta-description {
    font-size: 1em;
  }

  .page-promotions-rebate-rules__cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .page-promotions-rebate-rules__hero-section {
    padding: 80px 0;
  }

  .page-promotions-rebate-rules__main-title {
    font-size: 2em;
  }

  .page-promotions-rebate-rules__section-title {
    font-size: 1.8em;
  }

  .page-promotions-rebate-rules__sub-title {
    font-size: 1.3em;
  }

  .page-promotions-rebate-rules__table th,
  .page-promotions-rebate-rules__table td {
    padding: 10px;
    font-size: 0.9em;
  }

  .page-promotions-rebate-rules__cta-block {
    padding: 40px 20px;
  }
}