/* style/khuyn-mi-daily-rebate.css */

.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 15px;
}

.page-khuyn-mi-daily-rebate section {
  padding: 60px 0;
  text-align: center;
}

.page-khuyn-mi-daily-rebate section:nth-of-type(odd) {
  background-color: #f9f9f9;
}

.page-khuyn-mi-daily-rebate .hero-section {
  background: linear-gradient(135deg, #002060, #FFD700);
  color: #fff;
  padding: 100px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.page-khuyn-mi-daily-rebate .hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-khuyn-mi-daily-rebate .hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #eee;
}

.page-khuyn-mi-daily-rebate .btn {
  display: inline-block;
  padding: 15px 30px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
  transition: all 0.3s ease;
  margin: 10px;
  cursor: pointer;
}

.page-khuyn-mi-daily-rebate .btn-primary {
  background-color: #FFD700;
  color: #002060;
  border: 2px solid #FFD700;
}

.page-khuyn-mi-daily-rebate .btn-primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  transform: translateY(-2px);
}

.page-khuyn-mi-daily-rebate .btn-secondary {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.page-khuyn-mi-daily-rebate .btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #FFD700;
  border-color: #FFD700;
  transform: translateY(-2px);
}

.page-khuyn-mi-daily-rebate .btn-large {
  padding: 18px 35px;
  font-size: 1.2em;
}

.page-khuyn-mi-daily-rebate .section-title {
  font-size: 2.5em;
  color: #002060;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 15px;
}

.page-khuyn-mi-daily-rebate .section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-khuyn-mi-daily-rebate .section-description {
  font-size: 1.1em;
  color: #555;
  max-width: 900px;
  margin: 0 auto 40px auto;
}

.page-khuyn-mi-daily-rebate .section-intro .content-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
  text-align: left;
  margin-top: 40px;
}

.page-khuyn-mi-daily-rebate .section-intro .text-content {
  flex: 1;
}

.page-khuyn-mi-daily-rebate .section-intro .text-content p {
  margin-bottom: 15px;
  font-size: 1.05em;
  color: #444;
}

.page-khuyn-mi-daily-rebate .section-intro .image-content {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-khuyn-mi-daily-rebate .section-intro .feature-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.page-khuyn-mi-daily-rebate .rebate-table-wrapper {
  overflow-x: auto;
  margin-top: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

.page-khuyn-mi-daily-rebate .rebate-table {
  width: 100%;
  border-collapse: collapse;
  background-color: #fff;
  min-width: 600px;
}

.page-khuyn-mi-daily-rebate .rebate-table th,
.page-khuyn-mi-daily-rebate .rebate-table td {
  padding: 15px;
  border: 1px solid #eee;
  text-align: left;
  color: #333;
}

.page-khuyn-mi-daily-rebate .rebate-table th {
  background-color: #002060;
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
}

.page-khuyn-mi-daily-rebate .rebate-table tbody tr:nth-child(even) {
  background-color: #f2f2f2;
}

.page-khuyn-mi-daily-rebate .rebate-table tbody tr:hover {
  background-color: #e6f7ff;
}

.page-khuyn-mi-daily-rebate .note {
  font-size: 0.95em;
  color: #777;
  margin-top: 30px;
  text-align: center;
}

.page-khuyn-mi-daily-rebate .note a {
  color: #002060;
  text-decoration: none;
  font-weight: bold;
}

.page-khuyn-mi-daily-rebate .note a:hover {
  text-decoration: underline;
}

.page-khuyn-mi-daily-rebate .call-to-action-small {
  margin-top: 30px;
}

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

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

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

.page-khuyn-mi-daily-rebate .benefit-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

.page-khuyn-mi-daily-rebate .benefit-card .card-title {
  font-size: 1.5em;
  color: #002060;
  margin-bottom: 15px;
}

.page-khuyn-mi-daily-rebate .benefit-card p {
  font-size: 1em;
  color: #666;
}

.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;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: left;
  position: relative;
  padding-top: 70px; /* Space for step number */
}

.page-khuyn-mi-daily-rebate .step-number {
  position: absolute;
  top: 20px;
  left: 30px;
  background-color: #FFD700;
  color: #002060;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  font-weight: bold;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-khuyn-mi-daily-rebate .step-card .card-title {
  font-size: 1.4em;
  color: #002060;
  margin-bottom: 10px;
}

.page-khuyn-mi-daily-rebate .step-card p {
  font-size: 1em;
  color: #666;
}

.page-khuyn-mi-daily-rebate .step-card a {
  color: #002060;
  font-weight: bold;
  text-decoration: none;
}

.page-khuyn-mi-daily-rebate .step-card a:hover {
  text-decoration: underline;
}

.page-khuyn-mi-daily-rebate .call-to-action-center {
  margin-top: 50px;
}

.page-khuyn-mi-daily-rebate .terms-list {
  list-style: none;
  padding: 0;
  text-align: left;
  max-width: 800px;
  margin: 40px auto;
}

.page-khuyn-mi-daily-rebate .terms-list li {
  background-color: #fff;
  margin-bottom: 10px;
  padding: 15px 20px;
  border-left: 5px solid #002060;
  border-radius: 5px;
  font-size: 1.05em;
  color: #444;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-khuyn-mi-daily-rebate .read-more-terms {
  font-size: 1.1em;
  margin-top: 30px;
}

.page-khuyn-mi-daily-rebate .read-more-terms a {
  color: #002060;
  font-weight: bold;
  text-decoration: none;
}

.page-khuyn-mi-daily-rebate .read-more-terms a:hover {
  text-decoration: underline;
}

.page-khuyn-mi-daily-rebate .faq-item {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
  margin: 20px auto;
  padding: 25px;
  max-width: 900px;
  text-align: left;
}

.page-khuyn-mi-daily-rebate .faq-question {
  font-size: 1.3em;
  color: #002060;
  margin-bottom: 10px;
}

.page-khuyn-mi-daily-rebate .faq-answer {
  font-size: 1em;
  color: #555;
}

.page-khuyn-mi-daily-rebate .section-cta-final {
  background-color: #002060;
  color: #fff;
  padding: 80px 0;
}

.page-khuyn-mi-daily-rebate .section-cta-final .section-title {
  color: #FFD700;
}

.page-khuyn-mi-daily-rebate .section-cta-final .section-title::after {
  background-color: #fff;
}

.page-khuyn-mi-daily-rebate .section-cta-final .section-description {
  color: #eee;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-khuyn-mi-daily-rebate .hero-title {
    font-size: 2.8em;
  }
  .page-khuyn-mi-daily-rebate .hero-subtitle {
    font-size: 1.1em;
  }
  .page-khuyn-mi-daily-rebate .section-intro .content-wrapper {
    flex-direction: column;
  }
  .page-khuyn-mi-daily-rebate .section-intro .text-content,
  .page-khuyn-mi-daily-rebate .section-intro .image-content {
    flex: none;
    width: 100%;
  }
  .page-khuyn-mi-daily-rebate .section-title {
    font-size: 2em;
  }
  .page-khuyn-mi-daily-rebate .btn-large {
    padding: 15px 30px;
    font-size: 1.1em;
  }
}

@media (max-width: 768px) {
  .page-khuyn-mi-daily-rebate .hero-section {
    padding: 80px 0;
  }
  .page-khuyn-mi-daily-rebate .hero-title {
    font-size: 2.2em;
  }
  .page-khuyn-mi-daily-rebate .hero-subtitle {
    font-size: 1em;
  }
  .page-khuyn-mi-daily-rebate .btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-khuyn-mi-daily-rebate .section-title {
    font-size: 1.8em;
  }
  .page-khuyn-mi-daily-rebate .rebate-table-wrapper {
    margin-left: -15px;
    margin-right: -15px;
  }
  .page-khuyn-mi-daily-rebate .rebate-table th,
  .page-khuyn-mi-daily-rebate .rebate-table td {
    padding: 10px;
    font-size: 0.9em;
  }
}

@media (max-width: 576px) {
  .page-khuyn-mi-daily-rebate .hero-section {
    padding: 60px 0;
  }
  .page-khuyn-mi-daily-rebate .hero-title {
    font-size: 1.8em;
  }
  .page-khuyn-mi-daily-rebate .hero-subtitle {
    font-size: 0.9em;
  }
  .page-khuyn-mi-daily-rebate .btn {
    display: block;
    margin: 10px auto;
    width: fit-content;
  }
  .page-khuyn-mi-daily-rebate .section-title {
    font-size: 1.6em;
  }
  .page-khuyn-mi-daily-rebate .benefit-card {
    padding: 20px;
  }
  .page-khuyn-mi-daily-rebate .step-card {
    padding: 60px 20px 20px 20px;
  }
  .page-khuyn-mi-daily-rebate .step-number {
    left: 20px;
  }
  .page-khuyn-mi-daily-rebate .faq-question {
    font-size: 1.1em;
  }
}