.page-khuyn-mi-daily-rebate {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
}

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

.page-khuyn-mi-daily-rebate__hero-section {
  position: relative;
  background: linear-gradient(135deg, #FFD700 0%, #8B0000 100%);
  color: #fff;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 500px;
}

.page-khuyn-mi-daily-rebate__hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 800px;
}

.page-khuyn-mi-daily-rebate__title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  color: #fff;
}

.page-khuyn-mi-daily-rebate__subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #eee;
}

.page-khuyn-mi-daily-rebate__cta-group {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-khuyn-mi-daily-rebate__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  font-size: 1.1em;
  text-align: center;
}

.page-khuyn-mi-daily-rebate__btn--primary {
  background-color: #FFD700; /* Gold */
  color: #8B0000; /* Deep Red */
  border: 2px solid #FFD700;
}

.page-khuyn-mi-daily-rebate__btn--primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  color: #6a0000;
}

.page-khuyn-mi-daily-rebate__btn--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold */
  border: 2px solid #FFD700;
}

.page-khuyn-mi-daily-rebate__btn--secondary:hover {
  background-color: #FFD700;
  color: #8B0000; /* Deep Red */
}

.page-khuyn-mi-daily-rebate__hero-image-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.3;
  overflow: hidden;
}

.page-khuyn-mi-daily-rebate__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.page-khuyn-mi-daily-rebate__section {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.page-khuyn-mi-daily-rebate__section:nth-of-type(even) {
  background-color: #f0f0f0;
}

.page-khuyn-mi-daily-rebate__section-title {
  font-size: 2.5em;
  color: #8B0000; /* Deep Red */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-khuyn-mi-daily-rebate__section-title--light {
  color: #FFD700; /* Gold */
}

.page-khuyn-mi-daily-rebate__text {
  font-size: 1.1em;
  color: #333;
  margin-bottom: 20px;
  text-align: justify;
}

.page-khuyn-mi-daily-rebate__text--light {
  color: #eee;
}

.page-khuyn-mi-daily-rebate__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-khuyn-mi-daily-rebate__feature-card {
  background-color: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-khuyn-mi-daily-rebate__feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-khuyn-mi-daily-rebate__feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-khuyn-mi-daily-rebate__feature-title {
  font-size: 1.5em;
  color: #8B0000; /* Deep Red */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-khuyn-mi-daily-rebate__feature-description {
  font-size: 1em;
  color: #555;
  text-align: justify;
}

.page-khuyn-mi-daily-rebate__feature-description a {
  color: #8B0000;
  text-decoration: underline;
}

.page-khuyn-mi-daily-rebate__feature-description a:hover {
  color: #FFD700;
}

.page-khuyn-mi-daily-rebate__benefit-list {
  list-style: none;
  padding: 0;
  margin: 40px 0 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-khuyn-mi-daily-rebate__benefit-list li {
  background-color: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.page-khuyn-mi-daily-rebate__benefit-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 15px;
  object-fit: contain;
}

.page-khuyn-mi-daily-rebate__benefit-title {
  font-size: 1.4em;
  color: #8B0000;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-khuyn-mi-daily-rebate__benefit-description {
  font-size: 0.95em;
  color: #666;
  text-align: justify;
}

.page-khuyn-mi-daily-rebate__cta-center {
  text-align: center;
  margin-top: 50px;
}

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

.page-khuyn-mi-daily-rebate__step-card {
  background-color: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  position: relative;
}

.page-khuyn-mi-daily-rebate__step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #FFD700; /* Gold */
  color: #8B0000; /* Deep Red */
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8em;
  font-weight: bold;
  border: 3px solid #8B0000;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-khuyn-mi-daily-rebate__step-title {
  font-size: 1.4em;
  color: #8B0000;
  margin-top: 20px;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-khuyn-mi-daily-rebate__step-description {
  font-size: 1em;
  color: #555;
  text-align: justify;
}

.page-khuyn-mi-daily-rebate__step-description a {
  color: #8B0000;
  text-decoration: underline;
}

.page-khuyn-mi-daily-rebate__step-description a:hover {
  color: #FFD700;
}

.page-khuyn-mi-daily-rebate__terms-list {
  list-style: disc;
  padding-left: 25px;
  color: #444;
  font-size: 1.05em;
  margin-top: 30px;
}

.page-khuyn-mi-daily-rebate__terms-list li {
  margin-bottom: 10px;
}

.page-khuyn-mi-daily-rebate__terms-list li a {
  color: #8B0000;
  text-decoration: underline;
}

.page-khuyn-mi-daily-rebate__terms-list li a:hover {
  color: #FFD700;
}

.page-khuyn-mi-daily-rebate__faq-item {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-khuyn-mi-daily-rebate__faq-question {
  font-size: 1.3em;
  color: #8B0000;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-khuyn-mi-daily-rebate__faq-answer {
  font-size: 1em;
  color: #555;
  text-align: justify;
}

.page-khuyn-mi-daily-rebate__cta-final {
  position: relative;
  background-color: #8B0000; /* Deep Red */
  color: #fff;
  padding: 80px 0;
  text-align: center;
  overflow: hidden;
}

.page-khuyn-mi-daily-rebate__cta-final-content {
  position: relative;
  z-index: 10;
}

.page-khuyn-mi-daily-rebate__cta-final-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-khuyn-mi-daily-rebate__title {
    font-size: 2.8em;
  }
  .page-khuyn-mi-daily-rebate__section-title {
    font-size: 2em;
  }
  .page-khuyn-mi-daily-rebate__hero-section {
    padding: 60px 0;
    min-height: 400px;
  }
}

@media (max-width: 768px) {
  .page-khuyn-mi-daily-rebate__title {
    font-size: 2.2em;
  }
  .page-khuyn-mi-daily-rebate__subtitle {
    font-size: 1.1em;
  }
  .page-khuyn-mi-daily-rebate__cta-group {
    flex-direction: column;
    gap: 15px;
  }
  .page-khuyn-mi-daily-rebate__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-khuyn-mi-daily-rebate__section {
    padding: 40px 0;
  }
  .page-khuyn-mi-daily-rebate__section-title {
    font-size: 1.8em;
  }
  .page-khuyn-mi-daily-rebate__feature-card,
  .page-khuyn-mi-daily-rebate__benefit-list li,
  .page-khuyn-mi-daily-rebate__step-card {
    padding: 25px;
  }
  .page-khuyn-mi-daily-rebate__step-number {
    width: 45px;
    height: 45px;
    font-size: 1.6em;
    top: -15px;
  }
  .page-khuyn-mi-daily-rebate__terms-list,
  .page-khuyn-mi-daily-rebate__faq-answer {
    font-size: 0.95em;
  }
}

@media (max-width: 480px) {
  .page-khuyn-mi-daily-rebate__title {
    font-size: 1.8em;
  }
  .page-khuyn-mi-daily-rebate__subtitle {
    font-size: 1em;
  }
  .page-khuyn-mi-daily-rebate__hero-section {
    padding: 40px 0;
    min-height: 350px;
  }
  .page-khuyn-mi-daily-rebate__section-title {
    font-size: 1.5em;
  }
  .page-khuyn-mi-daily-rebate__feature-title,
  .page-khuyn-mi-daily-rebate__benefit-title,
  .page-khuyn-mi-daily-rebate__step-title,
  .page-khuyn-mi-daily-rebate__faq-question {
    font-size: 1.2em;
  }
  .page-khuyn-mi-daily-rebate__text {
    font-size: 1em;
  }
  .page-khuyn-mi-daily-rebate__feature-grid,
  .page-khuyn-mi-daily-rebate__benefit-list,
  .page-khuyn-mi-daily-rebate__steps-grid {
    gap: 20px;
  }
  .page-khuyn-mi-daily-rebate__cta-final {
    padding: 50px 0;
  }
}