.page-promotions-daily-offers {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light body background */
  background-color: #ffffff; /* Assuming shared.css sets a light background */
}

.page-promotions-daily-offers__hero-section {
  position: relative;
  width: 100%;
  height: 600px; /* Adjust height as needed */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

.page-promotions-daily-offers__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.page-promotions-daily-offers__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.page-promotions-daily-offers__hero-content {
  position: relative;
  z-index: 3;
  color: #ffffff;
  max-width: 800px;
  padding: 20px;
}

.page-promotions-daily-offers__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-promotions-daily-offers__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #ffffff;
}

.page-promotions-daily-offers__section {
  padding: 60px 20px;
}

.page-promotions-daily-offers__introduction,
.page-promotions-daily-offers__maximize-benefits {
  background-color: #f8f8f8;
}

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

.page-promotions-daily-offers__container--center {
  text-align: center;
}

.page-promotions-daily-offers__section-title {
  font-size: 2.5em;
  color: #26A9E0;
  margin-bottom: 40px;
  text-align: center;
}

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

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

.page-promotions-daily-offers__card {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding-bottom: 20px; /* Space for button */
}

.page-promotions-daily-offers__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.page-promotions-daily-offers__card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  margin-bottom: 15px;
}

.page-promotions-daily-offers__card-title {
  font-size: 1.5em;
  color: #26A9E0;
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-promotions-daily-offers__card-description {
  font-size: 1em;
  color: #555555;
  margin-bottom: 20px;
  padding: 0 15px;
}

.page-promotions-daily-offers__btn-primary,
.page-promotions-daily-offers__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  margin: 5px;
  max-width: 100%; /* Ensures responsiveness */
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-promotions-daily-offers__btn-primary {
  background-color: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-promotions-daily-offers__btn-primary:hover {
  background-color: #1a8cc4;
  border-color: #1a8cc4;
}

.page-promotions-daily-offers__btn-secondary {
  background-color: #ffffff;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-promotions-daily-offers__btn-secondary:hover {
  background-color: #f0f0f0;
  color: #1a8cc4;
  border-color: #1a8cc4;
}

.page-promotions-daily-offers__dark-bg {
  background-color: #26A9E0;
  color: #ffffff;
}

.page-promotions-daily-offers__dark-bg .page-promotions-daily-offers__section-title,
.page-promotions-daily-offers__dark-bg .page-promotions-daily-offers__text-block,
.page-promotions-daily-offers__dark-bg .page-promotions-daily-offers__card-title,
.page-promotions-daily-offers__dark-bg .page-promotions-daily-offers__feature-title,
.page-promotions-daily-offers__dark-bg .page-promotions-daily-offers__feature-description {
  color: #ffffff;
}

.page-promotions-daily-offers__dark-bg .page-promotions-daily-offers__card {
  background-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions-daily-offers__dark-bg .page-promotions-daily-offers__card:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-promotions-daily-offers__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
  text-align: center;
}

.page-promotions-daily-offers__feature-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.page-promotions-daily-offers__feature-card:hover {
  transform: translateY(-5px);
}

.page-promotions-daily-offers__feature-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
  filter: brightness(0) invert(1); /* Adjust icon color for dark background */
}

.page-promotions-daily-offers__feature-title {
  font-size: 1.8em;
  margin-bottom: 10px;
}

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

.page-promotions-daily-offers__list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-promotions-daily-offers__list-item {
  background-color: #ffffff;
  border-left: 5px solid #26A9E0;
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  font-size: 1.1em;
}

.page-promotions-daily-offers__faq-section {
  background-color: #f0f5f8;
}

.page-promotions-daily-offers__faq-list {
  max-width: 900px;
  margin: 40px auto 0 auto;
}

.page-promotions-daily-offers__faq-item {
  background-color: #ffffff;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.page-promotions-daily-offers__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: bold;
  color: #333333;
  cursor: pointer;
  background-color: #ffffff;
  transition: background-color 0.3s ease;
}

.page-promotions-daily-offers__faq-question:hover {
  background-color: #f5f5f5;
}

.page-promotions-daily-offers__faq-toggle {
  font-size: 1.5em;
  color: #26A9E0;
  transition: transform 0.3s ease;
}

.page-promotions-daily-offers__faq-item.active .page-promotions-daily-offers__faq-toggle {
  transform: rotate(45deg);
}

.page-promotions-daily-offers__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  color: #555555;
}

.page-promotions-daily-offers__faq-item.active .page-promotions-daily-offers__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show content */
  padding: 15px 25px 25px;
}

.page-promotions-daily-offers__cta-bottom {
  padding: 80px 20px;
  background-color: #26A9E0;
  color: #ffffff;
  text-align: center;
}

.page-promotions-daily-offers__cta-bottom .page-promotions-daily-offers__section-title,
.page-promotions-daily-offers__cta-bottom .page-promotions-daily-offers__text-block {
  color: #ffffff;
}

.page-promotions-daily-offers__button-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-promotions-daily-offers__hero-title {
    font-size: 3em;
  }
  .page-promotions-daily-offers__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-promotions-daily-offers__hero-section {
    height: 500px;
  }
  .page-promotions-daily-offers__hero-title {
    font-size: 2.5em;
  }
  .page-promotions-daily-offers__hero-description {
    font-size: 1.1em;
  }
  .page-promotions-daily-offers__section {
    padding: 40px 15px;
  }
  .page-promotions-daily-offers__section-title {
    font-size: 1.8em;
  }
  .page-promotions-daily-offers__text-block,
  .page-promotions-daily-offers__list-item,
  .page-promotions-daily-offers__card-description {
    font-size: 1em;
  }
  .page-promotions-daily-offers__card-grid {
    grid-template-columns: 1fr;
  }
  .page-promotions-daily-offers__feature-grid {
    grid-template-columns: 1fr;
  }
  .page-promotions-daily-offers__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-promotions-daily-offers__faq-answer {
    padding: 0 20px;
  }
  .page-promotions-daily-offers__faq-item.active .page-promotions-daily-offers__faq-answer {
    padding: 10px 20px 20px;
  }
  .page-promotions-daily-offers__btn-primary,
  .page-promotions-daily-offers__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-promotions-daily-offers__button-group {
    flex-direction: column;
    gap: 10px;
    padding: 0 15px;
  }
  .page-promotions-daily-offers img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-promotions-daily-offers__section,
  .page-promotions-daily-offers__card,
  .page-promotions-daily-offers__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-promotions-daily-offers__hero-section {
    padding-top: var(--header-offset, 120px) !important; /* Ensure mobile hero is below fixed header */
  }
  .page-promotions-daily-offers__feature-icon {
    width: 80px;
    height: 80px;
  }
}

@media (max-width: 480px) {
  .page-promotions-daily-offers__hero-title {
    font-size: 2em;
  }
  .page-promotions-daily-offers__hero-description {
    font-size: 1em;
  }
  .page-promotions-daily-offers__section-title {
    font-size: 1.5em;
  }
  .page-promotions-daily-offers__faq-question {
    font-size: 1em;
  }
}

/* Ensure content images in dark background areas are at least 200px */
.page-promotions-daily-offers__dark-bg .page-promotions-daily-offers__card-image {
  min-width: 200px;
  min-height: 200px;
}

/* Content area images must not display smaller than 200px */
.page-promotions-daily-offers img:not(.page-promotions-daily-offers__feature-icon) {
  min-width: 200px;
  min-height: 200px;
}

/* Specific override for feature icons to allow smaller display but still meet minimum source size */
.page-promotions-daily-offers__feature-icon {
  min-width: unset; /* Allow smaller display for icons */
  min-height: unset; /* Allow smaller display for icons */
}