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

.page-promotions-cashback__hero {
  background: linear-gradient(135deg, #1A237E 0%, #3F51B5 100%); /* Dark indigo to a slightly lighter blue */
  color: #fff;
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

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

.page-promotions-cashback__hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  opacity: 0.9;
}

.page-promotions-cashback__hero-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #1A237E; /* Dark indigo text */
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions-cashback__hero-button:hover {
  background-color: #e5c100; /* Slightly darker gold on hover */
  transform: translateY(-3px);
}

.page-promotions-cashback__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.15;
  overflow: hidden;
}

.page-promotions-cashback__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) blur(5px);
  transform: scale(1.1);
}

.page-promotions-cashback__section {
  padding: 60px 0;
  background-color: #fff;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-promotions-cashback__section:nth-of-type(even) {
  background-color: #e8eaf6; /* Light indigo background for alternating sections */
}

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

.page-promotions-cashback__section-title {
  font-size: 2.8em;
  color: #1A237E;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  position: relative;
}

.page-promotions-cashback__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-promotions-cashback__intro p {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-promotions-cashback__benefits h3,
.page-promotions-cashback__types h3,
.page-promotions-cashback__how-to h3 {
  font-size: 1.8em;
  color: #1A237E;
  margin-top: 30px;
  margin-bottom: 15px;
  text-align: center;
}

.page-promotions-cashback__benefits h3 {
  text-align: left;
}

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

.page-promotions-cashback__benefit-item {
  background-color: #fcfcfc;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 5px solid #FFD700;
}

.page-promotions-cashback__benefit-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-promotions-cashback__benefit-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 5px 5px rgba(0, 0, 0, 0.1));
}

.page-promotions-cashback__benefit-item h3 {
  font-size: 1.5em;
  color: #1A237E;
  margin-bottom: 15px;
}

.page-promotions-cashback__benefit-item p {
  font-size: 1em;
  color: #555;
}

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

.page-promotions-cashback__type-item {
  background-color: #fcfcfc;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.07);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-bottom: 5px solid #1A237E;
}

.page-promotions-cashback__type-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.page-promotions-cashback__type-image {
  width: 100%;
  max-height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-promotions-cashback__type-item h3 {
  font-size: 1.6em;
  color: #1A237E;
  margin-bottom: 10px;
}

.page-promotions-cashback__type-item p {
  font-size: 0.95em;
  color: #666;
  text-align: justify;
}

.page-promotions-cashback__how-to h3 {
  text-align: left;
  color: #1A237E;
  font-size: 2em;
  margin-bottom: 20px;
}

.page-promotions-cashback__how-to p {
  font-size: 1.1em;
  margin-bottom: 15px;
}

.page-promotions-cashback__how-to ul,
.page-promotions-cashback__how-to ol {
  margin-left: 25px;
  margin-bottom: 20px;
}

.page-promotions-cashback__how-to li {
  margin-bottom: 10px;
  font-size: 1.05em;
  color: #444;
}

.page-promotions-cashback__formula {
  font-size: 1.5em;
  font-weight: bold;
  color: #FFD700;
  background-color: #1A237E;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  margin: 30px 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions-cashback__image-fullwidth {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 10px;
  margin: 30px 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-promotions-cashback__how-to a {
  color: #1A237E;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-promotions-cashback__how-to a:hover {
  color: #FFD700;
}

.page-promotions-cashback__terms ul {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
}

.page-promotions-cashback__terms li {
  margin-bottom: 10px;
  font-size: 1.05em;
  color: #444;
}

.page-promotions-cashback__terms p {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-promotions-cashback__tips {
  background-color: #f5f7fa;
}

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

.page-promotions-cashback__tip-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease;
}

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

.page-promotions-cashback__tip-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
  filter: drop-shadow(0 3px 3px rgba(0, 0, 0, 0.1));
}

.page-promotions-cashback__tip-item h4 {
  font-size: 1.4em;
  color: #1A237E;
  margin-bottom: 10px;
}

.page-promotions-cashback__tip-item p {
  font-size: 0.95em;
  color: #555;
}

.page-promotions-cashback__cta {
  background: linear-gradient(45deg, #1A237E, #3F51B5);
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}

.page-promotions-cashback__cta-content {
  max-width: 900px;
}

.page-promotions-cashback__cta-title {
  font-size: 3em;
  color: #FFD700;
  margin-bottom: 30px;
  font-weight: bold;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-promotions-cashback__cta p {
  font-size: 1.3em;
  margin-bottom: 40px;
  opacity: 0.9;
}

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

.page-promotions-cashback__button {
  display: inline-block;
  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, box-shadow 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.page-promotions-cashback__button--primary {
  background-color: #FFD700;
  color: #1A237E;
}

.page-promotions-cashback__button--primary:hover {
  background-color: #e5c100;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}

.page-promotions-cashback__button--secondary {
  background-color: #fff;
  color: #1A237E;
  border: 2px solid #FFD700;
}

.page-promotions-cashback__button--secondary:hover {
  background-color: #f0f0f0;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promotions-cashback__hero-title {
    font-size: 3em;
  }
  .page-promotions-cashback__section-title {
    font-size: 2.2em;
  }
  .page-promotions-cashback__cta-title {
    font-size: 2.5em;
  }
}

@media (max-width: 768px) {
  .page-promotions-cashback__hero {
    padding: 60px 15px;
  }
  .page-promotions-cashback__hero-title {
    font-size: 2.5em;
  }
  .page-promotions-cashback__hero-subtitle {
    font-size: 1.2em;
  }
  .page-promotions-cashback__section {
    padding: 40px 0;
  }
  .page-promotions-cashback__section-title {
    font-size: 2em;
    margin-bottom: 30px;
  }
  .page-promotions-cashback__benefit-grid, .page-promotions-cashback__type-grid, .page-promotions-cashback__tip-grid {
    grid-template-columns: 1fr;
  }
  .page-promotions-cashback__how-to h3 {
    font-size: 1.8em;
  }
  .page-promotions-cashback__formula {
    font-size: 1.2em;
    padding: 15px;
  }
  .page-promotions-cashback__cta-title {
    font-size: 2em;
  }
  .page-promotions-cashback__cta p {
    font-size: 1.1em;
  }
  .page-promotions-cashback__cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .page-promotions-cashback__button {
    width: 80%;
  }
}

@media (max-width: 480px) {
  .page-promotions-cashback__hero-title {
    font-size: 2em;
  }
  .page-promotions-cashback__hero-subtitle {
    font-size: 1em;
  }
  .page-promotions-cashback__hero-button {
    font-size: 1em;
    padding: 12px 25px;
  }
  .page-promotions-cashback__section-title {
    font-size: 1.8em;
  }
  .page-promotions-cashback__how-to h3 {
    font-size: 1.5em;
  }
  .page-promotions-cashback__cta-title {
    font-size: 1.8em;
  }
  .page-promotions-cashback__cta p {
    font-size: 1em;
  }
  .page-promotions-cashback__button {
    width: 90%;
  }
}