/* style/promotions-daily-cashback.css */

.page-promotions-daily-cashback {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f9fa;
}

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

.page-promotions-daily-cashback__hero-section {
  background: linear-gradient(135deg, #007BFF, #0056b3);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-promotions-daily-cashback__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFC107;
}

.page-promotions-daily-cashback__hero-subtitle {
  font-size: 1.3em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  line-height: 1.8;
}

.page-promotions-daily-cashback__cta-button {
  display: inline-block;
  background-color: #FFC107;
  color: #007BFF;
  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;
  border: none;
  cursor: pointer;
}

.page-promotions-daily-cashback__cta-button:hover {
  background-color: #e0a800;
  transform: translateY(-3px);
}

.page-promotions-daily-cashback__content-section {
  padding: 60px 0;
  background-color: #fff;
}

.page-promotions-daily-cashback__section-title {
  font-size: 2.5em;
  color: #007BFF;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 10px;
}

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

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

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

.page-promotions-daily-cashback__feature-item {
  background-color: #f0f8ff;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.page-promotions-daily-cashback__feature-item:hover {
  transform: translateY(-10px);
}

.page-promotions-daily-cashback__feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  color: #007BFF;
}

.page-promotions-daily-cashback__feature-title {
  font-size: 1.6em;
  color: #007BFF;
  margin-bottom: 15px;
}

.page-promotions-daily-cashback__feature-description {
  font-size: 1em;
  color: #555;
}

.page-promotions-daily-cashback__step-list {
  list-style: none;
  padding: 0;
  margin: 40px 0;
}

.page-promotions-daily-cashback__step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 50px;
  padding: 30px;
  background-color: #fcfcfc;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.page-promotions-daily-cashback__step-item:nth-child(even) {
  background-color: #f0f8ff;
}

.page-promotions-daily-cashback__step-title {
  font-size: 1.8em;
  color: #007BFF;
  margin-bottom: 15px;
}

.page-promotions-daily-cashback__step-description {
  font-size: 1.1em;
  color: #444;
  margin-bottom: 20px;
  max-width: 700px;
}

.page-promotions-daily-cashback__step-description a {
  color: #007BFF;
  text-decoration: none;
  font-weight: bold;
}

.page-promotions-daily-cashback__step-description a:hover {
  text-decoration: underline;
}

.page-promotions-daily-cashback__step-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-promotions-daily-cashback__benefit-list {
  list-style: none;
  padding: 0;
  margin: 40px 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.page-promotions-daily-cashback__benefit-item {
  background-color: #e6f2ff;
  border-left: 5px solid #007BFF;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
}

.page-promotions-daily-cashback__benefit-title {
  font-size: 1.5em;
  color: #007BFF;
  margin-bottom: 10px;
}

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

.page-promotions-daily-cashback__faq-container {
  margin-top: 40px;
  border-top: 1px solid #eee;
}

.page-promotions-daily-cashback__faq-item {
  background-color: #fff;
  border-bottom: 1px solid #eee;
  padding: 20px 0;
}

.page-promotions-daily-cashback__faq-question {
  font-size: 1.3em;
  color: #007BFF;
  margin-bottom: 10px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-promotions-daily-cashback__faq-question::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-promotions-daily-cashback__faq-item.active .page-promotions-daily-cashback__faq-question::after {
  transform: rotate(45deg);
}

.page-promotions-daily-cashback__faq-answer {
  font-size: 1.05em;
  color: #666;
  padding-left: 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page-promotions-daily-cashback__faq-item.active .page-promotions-daily-cashback__faq-answer {
  max-height: 200px; /* Adjust based on expected content height */
  padding-top: 10px;
  padding-bottom: 10px;
}

.page-promotions-daily-cashback__cta-block {
  background-color: #007BFF;
  color: #fff;
  padding: 50px 30px;
  text-align: center;
  border-radius: 12px;
  margin-top: 60px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.page-promotions-daily-cashback__cta-text {
  font-size: 1.5em;
  margin-bottom: 30px;
  line-height: 1.5;
  color: #fff;
}

.page-promotions-daily-cashback__cta-button--large {
  padding: 18px 40px;
  font-size: 1.3em;
  background-color: #FFC107;
  color: #007BFF;
}

.page-promotions-daily-cashback__cta-button--large:hover {
  background-color: #e0a800;
  transform: translateY(-5px);
}

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

  .page-promotions-daily-cashback__hero-subtitle,
  .page-promotions-daily-cashback__paragraph,
  .page-promotions-daily-cashback__feature-description,
  .page-promotions-daily-cashback__step-description,
  .page-promotions-daily-cashback__benefit-description,
  .page-promotions-daily-cashback__faq-answer,
  .page-promotions-daily-cashback__cta-text {
    font-size: 1em;
  }

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

  .page-promotions-daily-cashback__feature-grid,
  .page-promotions-daily-cashback__benefit-list {
    grid-template-columns: 1fr;
  }

  .page-promotions-daily-cashback__step-item {
    padding: 20px;
  }

  .page-promotions-daily-cashback__cta-button--large {
    font-size: 1.1em;
    padding: 15px 30px;
  }
}

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

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

  .page-promotions-daily-cashback__hero-section,
  .page-promotions-daily-cashback__content-section {
    padding: 40px 0;
  }

  .page-promotions-daily-cashback__cta-block {
    padding: 30px 20px;
  }
}