/* style/promotions-cashback-offers.css */
.page-promotions-cashback-offers__hero-section {
  background: linear-gradient(135deg, #003366 0%, #001a33 100%);
  color: #ffffff;
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 40px;
}

.page-promotions-cashback-offers__hero-content {
  max-width: 800px;
  margin-bottom: 30px;
}

.page-promotions-cashback-offers__hero-content h1 {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFCC00; /* Auxiliary color for emphasis */
  line-height: 1.2;
}

.page-promotions-cashback-offers__hero-content p {
  font-size: 1.15em;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #e0e0e0;
}

.page-promotions-cashback-offers__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-promotions-cashback-offers__btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.05em;
  cursor: pointer;
  border: none;
}

.page-promotions-cashback-offers__btn--primary {
  background-color: #FFCC00; /* Auxiliary color */
  color: #003366; /* Main color for contrast */
  box-shadow: 0 4px 15px rgba(255, 204, 0, 0.4);
}

.page-promotions-cashback-offers__btn--primary:hover {
  background-color: #e6b800;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 204, 0, 0.6);
}

.page-promotions-cashback-offers__btn--secondary {
  background-color: transparent;
  color: #FFCC00; /* Auxiliary color */
  border: 2px solid #FFCC00;
}

.page-promotions-cashback-offers__btn--secondary:hover {
  background-color: #FFCC00;
  color: #003366; /* Main color for contrast */
  transform: translateY(-2px);
}

.page-promotions-cashback-offers__hero-image {
  max-width: 600px;
}

.page-promotions-cashback-offers__hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-promotions-cashback-offers__section {
  padding: 60px 20px;
  background-color: #f8f9fa;
  color: #333333;
}

.page-promotions-cashback-offers__section:nth-of-type(even) {
  background-color: #ffffff;
}

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

.page-promotions-cashback-offers__container h2 {
  font-size: 2.5em;
  color: #003366; /* Main color */
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}

.page-promotions-cashback-offers__container h2::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 80px;
  height: 4px;
  background-color: #FFCC00; /* Auxiliary color */
  border-radius: 2px;
}

.page-promotions-cashback-offers__container h3 {
  font-size: 1.8em;
  color: #003366; /* Main color */
  margin-top: 30px;
  margin-bottom: 15px;
  text-align: center;
}

.page-promotions-cashback-offers__container p {
  font-size: 1.05em;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #555555;
}

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

.page-promotions-cashback-offers__card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.page-promotions-cashback-offers__card-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.page-promotions-cashback-offers__card h3 {
  font-size: 1.5em;
  color: #003366;
  margin-top: 0;
  margin-bottom: 15px;
}

.page-promotions-cashback-offers__card p {
  font-size: 0.95em;
  color: #666666;
  line-height: 1.6;
  flex-grow: 1;
}

.page-promotions-cashback-offers__btn--small {
  padding: 10px 20px;
  font-size: 0.9em;
  margin-top: 20px;
}

.page-promotions-cashback-offers__note {
  text-align: center;
  font-style: italic;
  color: #777777;
  margin-top: 40px;
  font-size: 0.9em;
}

.page-promotions-cashback-offers__steps {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-promotions-cashback-offers__steps li {
  background-color: #eaf3f8; /* Lighter shade of main color */
  border-left: 5px solid #003366; /* Main color */
  margin-bottom: 25px;
  padding: 25px 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 51, 102, 0.1);
}

.page-promotions-cashback-offers__steps li strong {
  font-size: 1.3em;
  color: #003366;
  display: block;
  margin-bottom: 10px;
}

.page-promotions-cashback-offers__steps li p {
  font-size: 1em;
  line-height: 1.6;
  color: #444444;
  margin-bottom: 0;
}

.page-promotions-cashback-offers__steps li a {
  color: #FFCC00; /* Auxiliary color */
  font-weight: bold;
  text-decoration: none;
}

.page-promotions-cashback-offers__steps li a:hover {
  text-decoration: underline;
}

.page-promotions-cashback-offers__callout {
  text-align: center;
  font-size: 1.1em;
  font-weight: bold;
  color: #003366;
  margin-top: 40px;
  padding: 20px;
  background-color: #fff3e0; /* Light yellow background */
  border-radius: 8px;
  border: 1px solid #FFCC00;
}

.page-promotions-cashback-offers__callout a {
  color: #003366; /* Main color for contrast */
  text-decoration: underline;
}

.page-promotions-cashback-offers__callout a:hover {
  color: #FFCC00;
}

.page-promotions-cashback-offers__list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-promotions-cashback-offers__list li {
  background-color: #f0f8ff; /* Very light blue */
  border-left: 4px solid #FFCC00;
  margin-bottom: 15px;
  padding: 18px 25px;
  border-radius: 6px;
  font-size: 1em;
  line-height: 1.6;
  color: #444444;
}

.page-promotions-cashback-offers__list li strong {
  color: #003366;
}

.page-promotions-cashback-offers__tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.page-promotions-cashback-offers__tip-item {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.2s ease;
}

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

.page-promotions-cashback-offers__tip-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
  color: #003366; /* Apply main color to icons if SVG */
}

.page-promotions-cashback-offers__tip-item h4 {
  font-size: 1.3em;
  color: #003366;
  margin-bottom: 10px;
}

.page-promotions-cashback-offers__tip-item p {
  font-size: 0.95em;
  color: #666666;
  line-height: 1.6;
}

.page-promotions-cashback-offers__advantages {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-promotions-cashback-offers__advantages li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
  font-size: 1.05em;
  line-height: 1.7;
  color: #444444;
  background-color: #e6f7ff; /* Lighter blue for list items */
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 51, 102, 0.05);
}

.page-promotions-cashback-offers__advantage-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  margin-right: 20px;
  color: #FFCC00; /* Auxiliary color for icons */
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.page-promotions-cashback-offers__advantages li strong {
  color: #003366;
  display: block;
  margin-bottom: 5px;
}

.page-promotions-cashback-offers__cta-section {
  background: linear-gradient(45deg, #003366, #001a33);
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
}

.page-promotions-cashback-offers__cta-section h2 {
  color: #FFCC00; /* Auxiliary color */
  font-size: 2.8em;
  margin-bottom: 25px;
}

.page-promotions-cashback-offers__cta-section p {
  font-size: 1.15em;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #e0e0e0;
}

.page-promotions-cashback-offers__cta-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-promotions-cashback-offers__hero-content h1 {
    font-size: 2.5em;
  }

  .page-promotions-cashback-offers__hero-content p {
    font-size: 1em;
  }

  .page-promotions-cashback-offers__hero-actions {
    flex-direction: column;
  }

  .page-promotions-cashback-offers__container h2 {
    font-size: 2em;
  }

  .page-promotions-cashback-offers__card {
    padding: 25px;
  }

  .page-promotions-cashback-offers__card h3 {
    font-size: 1.3em;
  }

  .page-promotions-cashback-offers__steps li {
    padding: 20px;
  }

  .page-promotions-cashback-offers__steps li strong {
    font-size: 1.1em;
  }

  .page-promotions-cashback-offers__cta-section h2 {
    font-size: 2.2em;
  }

  .page-promotions-cashback-offers__cta-section p {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-promotions-cashback-offers__hero-section {
    padding: 60px 15px;
  }

  .page-promotions-cashback-offers__hero-content h1 {
    font-size: 2em;
  }

  .page-promotions-cashback-offers__btn {
    width: 100%;
    padding: 12px 20px;
  }

  .page-promotions-cashback-offers__container h2 {
    font-size: 1.8em;
  }

  .page-promotions-cashback-offers__grid,
  .page-promotions-cashback-offers__tips-grid {
    grid-template-columns: 1fr;
  }

  .page-promotions-cashback-offers__advantages li {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .page-promotions-cashback-offers__advantage-icon {
    margin-right: 0;
    margin-bottom: 15px;
  }

  .page-promotions-cashback-offers__cta-section h2 {
    font-size: 1.8em;
  }
}