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

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

/* Hero Section */
.page-promotions-rebate__hero-section {
  background: linear-gradient(135deg, #0A2463 0%, #1a3a70 100%); /* Darker blue gradient */
  color: #fff;
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 40px;
  position: relative;
  overflow: hidden;
}

.page-promotions-rebate__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:abstract,geometric,subtle_pattern]') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
}

.page-promotions-rebate__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.page-promotions-rebate__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #E3B505; /* Auxiliary color for emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  font-weight: bold;
}

.page-promotions-rebate__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions-rebate__hero-button {
  display: inline-block;
  background-color: #E3B505; /* Auxiliary color for buttons */
  color: #0A2463; /* Text color contrasting with button background */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions-rebate__hero-button:hover {
  background-color: #ffcc00;
  transform: translateY(-3px);
}

.page-promotions-rebate__hero-image-wrapper {
  position: relative;
  z-index: 1;
  margin-top: 40px;
  max-width: 90%;
  width: 600px;
}

.page-promotions-rebate__hero-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* General Section Styling */
.page-promotions-rebate__section {
  padding: 60px 0;
  background-color: #fff;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-promotions-rebate__section:nth-of-type(even) {
  background-color: #fcfcfc;
}

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

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

.page-promotions-rebate p {
  margin-bottom: 15px;
  font-size: 1.05em;
  color: #444;
}

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

.page-promotions-rebate ul li,
.page-promotions-rebate ol li {
  margin-bottom: 10px;
  color: #555;
}

.page-promotions-rebate ul li::marker {
  color: #E3B505;
}

.page-promotions-rebate ol li::marker {
  color: #0A2463;
  font-weight: bold;
}

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

/* Rebate Cards */
.page-promotions-rebate__rebate-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-promotions-rebate__card {
  background-color: #f9f9f9;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-promotions-rebate__card-title {
  font-size: 1.8em;
  color: #0A2463;
  margin-bottom: 15px;
}

.page-promotions-rebate__card p {
  font-size: 1em;
  color: #666;
  margin-bottom: 20px;
}

.page-promotions-rebate__card ul {
  text-align: left;
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.page-promotions-rebate__card ul li {
  padding-left: 25px;
  position: relative;
  margin-bottom: 8px;
  color: #555;
}

.page-promotions-rebate__card ul li::before {
  content: '✔';
  color: #E3B505;
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
}

.page-promotions-rebate__card-button {
  display: inline-block;
  background-color: #E3B505;
  color: #0A2463;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-promotions-rebate__card-button:hover {
  background-color: #ffcc00;
}

/* Calculation Method */
.page-promotions-rebate__formula {
  background-color: #0A2463;
  color: #fff;
  padding: 25px;
  border-radius: 8px;
  text-align: center;
  font-size: 1.5em;
  font-weight: bold;
  margin: 30px auto;
  max-width: 600px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Terms and Conditions */
.page-promotions-rebate__terms-conditions ul {
  list-style-type: disc;
  padding-left: 20px;
}

.page-promotions-rebate__terms-conditions ul li {
  margin-bottom: 10px;
}

.page-promotions-rebate__button {
  display: block;
  width: fit-content;
  margin: 30px auto 0 auto;
  background-color: #0A2463;
  color: #E3B505;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-promotions-rebate__button:hover {
  background-color: #1a3a70;
}

/* Benefits List */
.page-promotions-rebate__benefits-list {
  list-style: none;
  padding-left: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.page-promotions-rebate__benefits-list li {
  background-color: #e8f0fe; /* Lighter blue */
  padding: 20px;
  border-left: 5px solid #0A2463;
  border-radius: 5px;
  font-size: 1.05em;
  color: #333;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

/* How To Claim */
.page-promotions-rebate__steps-list {
  list-style-type: decimal;
  padding-left: 30px;
  font-size: 1.05em;
}

.page-promotions-rebate__steps-list li {
  margin-bottom: 15px;
  font-weight: bold;
  color: #0A2463;
}

.page-promotions-rebate__steps-list li p {
  font-weight: normal;
  color: #444;
}

.page-promotions-rebate__steps-list li a {
  color: #E3B505;
  text-decoration: none;
  font-weight: bold;
}

.page-promotions-rebate__steps-list li a:hover {
  text-decoration: underline;
}

/* FAQ */
.page-promotions-rebate__faq-item {
  background-color: #f9f9f9;
  border: 1px solid #eee;
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
}

.page-promotions-rebate__faq-question {
  font-size: 1.3em;
  color: #0A2463;
  margin-bottom: 10px;
}

.page-promotions-rebate__faq-answer {
  font-size: 1em;
  color: #555;
}

/* Call to Action */
.page-promotions-rebate__cta {
  text-align: center;
  background-color: #0A2463;
  color: #fff;
  padding: 80px 0;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.page-promotions-rebate__cta .page-promotions-rebate__section-title {
  color: #E3B505;
}

.page-promotions-rebate__cta p {
  max-width: 800px;
  margin: 0 auto 40px auto;
  font-size: 1.15em;
  color: #e0e0e0;
}

.page-promotions-rebate__cta-button {
  display: inline-block;
  background-color: #E3B505;
  color: #0A2463;
  padding: 15px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  margin: 0 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions-rebate__cta-button:hover {
  background-color: #ffcc00;
  transform: translateY(-3px);
}

.page-promotions-rebate__cta-button--secondary {
  background-color: transparent;
  border: 2px solid #E3B505;
  color: #E3B505;
}

.page-promotions-rebate__cta-button--secondary:hover {
  background-color: #E3B505;
  color: #0A2463;
}

/* Related Links */
.page-promotions-rebate__related-links {
  text-align: center;
  padding-bottom: 80px;
}

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

.page-promotions-rebate__related-link {
  display: block;
  background-color: #f0f0f0;
  color: #0A2463;
  padding: 15px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.page-promotions-rebate__related-link:hover {
  background-color: #E3B505;
  color: #0A2463;
}

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

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

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

  .page-promotions-rebate__rebate-cards {
    grid-template-columns: 1fr;
  }

  .page-promotions-rebate__cta-button {
    font-size: 1.1em;
    padding: 12px 25px;
    margin: 10px 0;
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 480px) {
  .page-promotions-rebate__hero-title {
    font-size: 2em;
  }

  .page-promotions-rebate__hero-section {
    padding: 60px 0;
  }

  .page-promotions-rebate__section {
    padding: 40px 0;
  }

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

  .page-promotions-rebate__formula {
    font-size: 1.2em;
    padding: 20px;
  }

  .page-promotions-rebate__benefits-list li {
    padding: 15px;
  }

  .page-promotions-rebate__faq-question {
    font-size: 1.1em;
  }

  .page-promotions-rebate__cta {
    padding: 60px 0;
  }
}