.page-promotions {
  background-color: #F4F7FB;
  color: #1F2D3D;
}

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

.page-promotions__hero-section {
  position: relative;
  text-align: center;
  padding-bottom: 20px; /* Space between image and content if not flex column */
  background-color: #2F6BFF; /* Fallback for hero section background */
}

.page-promotions__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-promotions__hero-content {
  padding: 40px 20px;
  background-color: #2F6BFF;
  color: #FFFFFF;
  text-align: center;
}

.page-promotions__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 15px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #FFFFFF;
  font-size: clamp(28px, 4vw, 48px);
}

.page-promotions__description {
  font-size: 1.1em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #E0E0E0;
}

.page-promotions__cta-button {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #FFFFFF;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.05em;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions__cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-promotions__offers-list-section {
  padding: 60px 0;
  background-color: #F4F7FB;
}

.page-promotions__section-title {
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: bold;
  text-align: center;
  margin-bottom: 15px;
  color: #1F2D3D;
}

.page-promotions__section-description {
  font-size: 1.05em;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #1F2D3D;
}

.page-promotions__offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-promotions__offer-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-promotions__offer-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.page-promotions__card-image {
  width: 100%;
  height: 220px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
}

.page-promotions__card-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-promotions__card-title {
  font-size: 1.4em;
  font-weight: bold;
  margin-bottom: 10px;
  color: #000000;
}

.page-promotions__card-text {
  font-size: 0.95em;
  line-height: 1.6;
  color: #1F2D3D;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-promotions__card-button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 6px;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #FFFFFF;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  text-align: center;
  transition: background 0.3s ease;
  align-self: flex-start;
}

.page-promotions__card-button:hover {
  background: linear-gradient(180deg, #6FA3FF 0%, #4A8BFF 100%);
}

.page-promotions__cta-bottom {
  text-align: center;
  margin-top: 60px;
  padding: 30px;
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-promotions__cta-text {
  font-size: 1.2em;
  font-weight: bold;
  margin-bottom: 25px;
  color: #000000;
}

.page-promotions__faq-section {
  padding: 60px 0;
  background-color: #F4F7FB;
}

.page-promotions__faq-accordion {
  margin-top: 40px;
}

.page-promotions__faq-item {
  background-color: #FFFFFF;
  border: 1px solid #D6E2FF;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-promotions__faq-question {
  font-size: 1.15em;
  font-weight: bold;
  padding: 20px 25px;
  cursor: pointer;
  color: #000000;
  position: relative;
  margin: 0;
}

.page-promotions__faq-question::after {
  content: '+';
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  color: #2F6BFF;
  transition: transform 0.3s ease;
}

.page-promotions__faq-item.active .page-promotions__faq-question::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-promotions__faq-answer {
  padding: 0 25px 20px;
  font-size: 1em;
  line-height: 1.7;
  color: #1F2D3D;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}

.page-promotions__faq-item.active .page-promotions__faq-answer {
  max-height: 200px; /* Adjust as needed */
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-promotions__hero-content {
    padding: 30px 15px;
  }

  .page-promotions__main-title {
    font-size: clamp(24px, 6vw, 40px);
  }

  .page-promotions__description {
    font-size: 1em;
  }

  .page-promotions__offers-grid {
    grid-template-columns: 1fr;
  }

  .page-promotions__card-image {
    height: 180px;
  }

  .page-promotions__card-title {
    font-size: 1.2em;
  }

  .page-promotions__card-text {
    font-size: 0.9em;
  }

  .page-promotions__cta-bottom {
    padding: 20px;
  }

  .page-promotions__cta-text {
    font-size: 1em;
  }

  .page-promotions__faq-question {
    font-size: 1em;
    padding: 15px 20px;
  }

  /* Mobile content area image size constraint */
  .page-promotions img {
    max-width: 100%;
    height: auto;
  }
  .page-promotions__card-image {
    max-width: 100%;
    height: auto; /* Override fixed height for responsiveness */
  }
}

@media (max-width: 480px) {
  .page-promotions__hero-content {
    padding: 20px 10px;
  }

  .page-promotions__main-title {
    font-size: clamp(20px, 7vw, 36px);
  }

  .page-promotions__cta-button {
    padding: 12px 20px;
    font-size: 0.95em;
  }

  .page-promotions__section-title {
    font-size: clamp(20px, 5vw, 30px);
  }

  .page-promotions__section-description {
    font-size: 0.9em;
  }

  .page-promotions__card-content {
    padding: 20px;
  }

  .page-promotions__card-title {
    font-size: 1.1em;
  }

  .page-promotions__card-button {
    font-size: 0.9em;
    padding: 10px 20px;
  }
}