.page-promotions-cashback {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray text for dark background */
  background-color: #0F1D2D; /* Darker background */
}

.page-promotions-cashback__hero {
  background: linear-gradient(135deg, #1A2E44, #0F1D2D);
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 40px;
  min-height: 400px;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .page-promotions-cashback__hero {
    flex-direction: row;
    text-align: left;
    justify-content: space-around;
    padding: 100px 40px;
  }
}

.page-promotions-cashback__hero-content {
  max-width: 600px;
  z-index: 1;
}

.page-promotions-cashback__hero h1 {
  font-size: 3.2em;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-promotions-cashback__hero p {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #B0B0B0;
}

.page-promotions-cashback__hero-image-wrapper {
  width: 100%;
  max-width: 400px;
  z-index: 1;
}

@media (min-width: 768px) {
  .page-promotions-cashback__hero-image-wrapper {
    width: 40%;
  }
}

.page-promotions-cashback__hero-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-promotions-cashback__section {
  padding: 60px 20px;
  background-color: #1A2E44;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions-cashback__introduction {
  background-color: #1A2E44;
}

.page-promotions-cashback__container {
  max-width: 1000px;
  margin: 0 auto;
}

.page-promotions-cashback__container--center {
  text-align: center;
}

.page-promotions-cashback__section h2 {
  font-size: 2.5em;
  color: #FFD700; /* Gold for section titles */
  margin-bottom: 30px;
  text-align: center;
}

.page-promotions-cashback__section h3 {
  font-size: 1.8em;
  color: #FFD700; /* Gold for sub-titles */
  margin-top: 40px;
  margin-bottom: 20px;
}

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

.page-promotions-cashback__list {
  list-style-type: disc;
  padding-left: 25px;
  margin-bottom: 30px;
}

.page-promotions-cashback__list li {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 10px;
  color: #E0E0E0;
}

.page-promotions-cashback__list li strong {
  color: #FFD700;
}

.page-promotions-cashback__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-top: 40px;
}

@media (min-width: 768px) {
  .page-promotions-cashback__grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

.page-promotions-cashback__grid-item {
  background-color: #0F1D2D;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  border: 1px solid #2B4768;
}

.page-promotions-cashback__grid-item h3 {
  color: #FFD700;
  margin-top: 0;
  font-size: 1.6em;
}

.page-promotions-cashback__grid-item ul {
  list-style-type: none;
  padding-left: 0;
  margin-top: 15px;
}

.page-promotions-cashback__grid-item ul li {
  margin-bottom: 8px;
  font-size: 1em;
  color: #B0B0B0;
}

.page-promotions-cashback__steps {
  list-style-type: decimal;
  padding-left: 25px;
  margin-bottom: 30px;
  color: #E0E0E0;
}

.page-promotions-cashback__steps li {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 10px;
}

.page-promotions-cashback__note {
  font-style: italic;
  color: #B0B0B0;
  margin-top: 30px;
}

.page-promotions-cashback__image {
  width: 100%;
  max-width: 600px;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions-cashback__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.2s ease;
  margin-top: 20px;
  cursor: pointer;
  border: none;
  text-align: center;
}

.page-promotions-cashback__btn--primary {
  background-color: #FFD700; /* Gold */
  color: #1A2E44; /* Dark blue */
}

.page-promotions-cashback__btn--primary:hover {
  background-color: #E5C100;
  transform: translateY(-2px);
}

.page-promotions-cashback__btn--secondary {
  background-color: #1A2E44; /* Dark blue */
  color: #FFD700; /* Gold */
  border: 2px solid #FFD700;
  margin-left: 15px;
}

.page-promotions-cashback__btn--secondary:hover {
  background-color: #2B4768;
  transform: translateY(-2px);
}

.page-promotions-cashback__btn--large {
  padding: 18px 40px;
  font-size: 1.2em;
}

.page-promotions-cashback__link-inline {
  color: #FFD700;
  text-decoration: underline;
  font-weight: bold;
}

.page-promotions-cashback__link-inline:hover {
  color: #E5C100;
  text-decoration: none;
}

.page-promotions-cashback__accordion {
  margin-top: 40px;
}

.page-promotions-cashback__accordion-item {
  margin-bottom: 15px;
  border: 1px solid #2B4768;
  border-radius: 8px;
  overflow: hidden;
}

.page-promotions-cashback__accordion-header {
  background-color: #0F1D2D;
  color: #FFD700;
  padding: 18px 25px;
  width: 100%;
  text-align: left;
  border: none;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-promotions-cashback__accordion-header::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-promotions-cashback__accordion-header.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-promotions-cashback__accordion-header:hover {
  background-color: #1A2E44;
}

.page-promotions-cashback__accordion-content {
  padding: 0 25px;
  background-color: #1A2E44;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-promotions-cashback__accordion-content.active {
  max-height: 200px; /* Adjust as needed for content length */
  padding: 15px 25px 25px;
}

.page-promotions-cashback__accordion-content p {
  margin-bottom: 0;
  color: #E0E0E0;
}

/* Responsive Adjustments */
@media (max-width: 767px) {
  .page-promotions-cashback__hero h1 {
    font-size: 2.5em;
  }
  .page-promotions-cashback__hero p {
    font-size: 1.1em;
  }
  .page-promotions-cashback__section h2 {
    font-size: 2em;
  }
  .page-promotions-cashback__section h3 {
    font-size: 1.5em;
  }
  .page-promotions-cashback__btn {
    width: 100%;
    margin-left: 0;
    margin-bottom: 15px;
  }
  .page-promotions-cashback__btn--secondary {
    margin-left: 0;
  }
}