.page-promo-daily-deposit-offer {
  color: #333333; /* Default text color for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-promo-daily-deposit-offer__hero-section {
  position: relative;
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
  background-color: #3A1C71; /* Deep purple background for hero */
  color: #ffffff;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 600px; /* Minimum height for hero */
}

.page-promo-daily-deposit-offer__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 40px 20px;
  margin-bottom: 20px;
}

.page-promo-daily-deposit-offer__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #D72638; /* Accent red for title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-weight: bold;
}

.page-promo-daily-deposit-offer__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  line-height: 1.8;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-promo-daily-deposit-offer__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-promo-daily-deposit-offer__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.page-promo-daily-deposit-offer__hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3; /* Subtle background image */
  display: block;
}

.page-promo-daily-deposit-offer__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  white-space: nowrap;
}

.page-promo-daily-deposit-offer__button--primary {
  background-color: #D72638; /* Accent red */
  color: #ffffff;
  border: 2px solid #D72638;
}

.page-promo-daily-deposit-offer__button--primary:hover {
  background-color: #e34c5c;
  transform: translateY(-2px);
}

.page-promo-daily-deposit-offer__button--secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.page-promo-daily-deposit-offer__button--secondary:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.page-promo-daily-deposit-offer__section-title {
  font-size: 2.5em;
  color: #3A1C71; /* Deep purple */
  text-align: center;
  margin-bottom: 50px;
  margin-top: 60px;
  position: relative;
}

.page-promo-daily-deposit-offer__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #D72638;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-promo-daily-deposit-offer__features-section,
.page-promo-daily-deposit-offer__how-to-claim-section,
.page-promo-daily-deposit-offer__faq-section,
.page-promo-daily-deposit-offer__info-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.page-promo-daily-deposit-offer__feature-grid,
.page-promo-daily-deposit-offer__steps-grid,
.page-promo-daily-deposit-offer__info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-promo-daily-deposit-offer__feature-card,
.page-promo-daily-deposit-offer__step-card,
.page-promo-daily-deposit-offer__info-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-promo-daily-deposit-offer__feature-card:hover,
.page-promo-daily-deposit-offer__step-card:hover,
.page-promo-daily-deposit-offer__info-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.page-promo-daily-deposit-offer__feature-card img,
.page-promo-daily-deposit-offer__info-card img {
  width: 100%; /* Ensure images take full width of card */
  max-width: 400px; /* Max width to ensure they don't get too large */
  height: auto; /* Maintain aspect ratio */
  min-height: 200px; /* Enforce minimum height */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 25px;
  display: block;
}

.page-promo-daily-deposit-offer__card-title {
  font-size: 1.6em;
  color: #3A1C71;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promo-daily-deposit-offer__card-description {
  font-size: 1em;
  color: #555555;
  line-height: 1.7;
  flex-grow: 1;
}

.page-promo-daily-deposit-offer__step-card {
  justify-content: flex-start;
}

.page-promo-daily-deposit-offer__step-number {
  width: 60px;
  height: 60px;
  background-color: #D72638;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 25px;
  box-shadow: 0 5px 15px rgba(215, 38, 56, 0.4);
}

.page-promo-daily-deposit-offer__how-to-claim-section .page-promo-daily-deposit-offer__button {
  margin-top: 25px;
  background-color: #3A1C71;
  color: #ffffff;
  border: 2px solid #3A1C71;
  padding: 12px 25px;
  font-size: 1em;
}

.page-promo-daily-deposit-offer__how-to-claim-section .page-promo-daily-deposit-offer__button:hover {
  background-color: #4f2e96;
  border-color: #4f2e96;
}

.page-promo-daily-deposit-offer__faq-accordion {
  max-width: 900px;
  margin: 0 auto 40px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.page-promo-daily-deposit-offer__faq-item {
  border-bottom: 1px solid #eeeeee;
}

.page-promo-daily-deposit-offer__faq-item:last-child {
  border-bottom: none;
}

.page-promo-daily-deposit-offer__faq-question {
  background-color: #f9f9f9;
  color: #3A1C71;
  padding: 20px 30px;
  font-size: 1.2em;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-promo-daily-deposit-offer__faq-question:hover {
  background-color: #f0f0f0;
}

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

.page-promo-daily-deposit-offer__faq-item.active .page-promo-daily-deposit-offer__faq-question::after {
  content: '-';
  transform: rotate(180deg);
}

.page-promo-daily-deposit-offer__faq-answer {
  background-color: #ffffff;
  padding: 0 30px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page-promo-daily-deposit-offer__faq-item.active .page-promo-daily-deposit-offer__faq-answer {
  max-height: 300px; /* Adjust as needed */
  padding: 20px 30px;
}

.page-promo-daily-deposit-offer__faq-answer p {
  margin-bottom: 10px;
  color: #555555;
}

.page-promo-daily-deposit-offer__faq-answer .page-promo-daily-deposit-offer__button {
  margin-top: 15px;
  background-color: #D72638;
  color: #ffffff;
  border: 2px solid #D72638;
  padding: 10px 20px;
  font-size: 0.9em;
}

.page-promo-daily-deposit-offer__faq-answer .page-promo-daily-deposit-offer__button:hover {
  background-color: #e34c5c;
  border-color: #e34c5c;
}

.page-promo-daily-deposit-offer__cta-section {
  background-color: #3A1C71; /* Deep purple background */
  color: #ffffff;
  padding: 60px 20px;
  text-align: center;
  margin-top: 60px;
}

.page-promo-daily-deposit-offer__cta-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #D72638; /* Accent red */
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-promo-daily-deposit-offer__cta-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.page-promo-daily-deposit-offer__cta-section .page-promo-daily-deposit-offer__button--primary {
  padding: 18px 40px;
  font-size: 1.3em;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(215, 38, 56, 0.5);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promo-daily-deposit-offer__hero-title {
    font-size: 3em;
  }

  .page-promo-daily-deposit-offer__hero-description {
    font-size: 1.1em;
  }

  .page-promo-daily-deposit-offer__section-title {
    font-size: 2.2em;
  }

  .page-promo-daily-deposit-offer__feature-grid,
  .page-promo-daily-deposit-offer__steps-grid,
  .page-promo-daily-deposit-offer__info-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .page-promo-daily-deposit-offer__cta-title {
    font-size: 2.4em;
  }
}

@media (max-width: 768px) {
  .page-promo-daily-deposit-offer__hero-section {
    padding-top: var(--header-offset, 80px); /* Adjust for mobile header */
    min-height: 500px;
  }

  .page-promo-daily-deposit-offer__hero-title {
    font-size: 2.5em;
  }

  .page-promo-daily-deposit-offer__hero-description {
    font-size: 1em;
  }

  .page-promo-daily-deposit-offer__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-promo-daily-deposit-offer__button {
    width: 80%;
    max-width: 300px;
  }

  .page-promo-daily-deposit-offer__section-title {
    font-size: 2em;
  }

  .page-promo-daily-deposit-offer__feature-grid,
  .page-promo-daily-deposit-offer__steps-grid,
  .page-promo-daily-deposit-offer__info-grid {
    grid-template-columns: 1fr;
  }

  .page-promo-daily-deposit-offer__features-section,
  .page-promo-daily-deposit-offer__how-to-claim-section,
  .page-promo-daily-deposit-offer__faq-section,
  .page-promo-daily-deposit-offer__info-section {
    padding: 20px 15px;
  }

  .page-promo-daily-deposit-offer__feature-card img,
  .page-promo-daily-deposit-offer__info-card img {
    max-width: 100%;
    height: auto;
    min-height: 200px; /* Ensure images are not too small */
  }

  /* Ensure content area images are responsive and do not overflow */
  .page-promo-daily-deposit-offer img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Enforce minimum width for content images */
    min-height: 200px; /* Enforce minimum height for content images */
  }

  .page-promo-daily-deposit-offer__cta-title {
    font-size: 2em;
  }

  .page-promo-daily-deposit-offer__cta-description {
    font-size: 1em;
  }

  .page-promo-daily-deposit-offer__cta-section .page-promo-daily-deposit-offer__button--primary {
    padding: 15px 30px;
    font-size: 1.1em;
  }

  .page-promo-daily-deposit-offer {
    overflow-x: hidden; /* Prevent horizontal scroll on mobile */
  }
}

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

  .page-promo-daily-deposit-offer__section-title {
    font-size: 1.8em;
  }

  .page-promo-daily-deposit-offer__card-title {
    font-size: 1.4em;
  }

  .page-promo-daily-deposit-offer__button {
    padding: 12px 20px;
    font-size: 1em;
  }

  .page-promo-daily-deposit-offer__cta-title {
    font-size: 1.8em;
  }
}