.page-promotions {
  max-width: 1390px;
  margin: 0 auto;
  padding: 10px 20px 40px;
  background-color: #F4F7FB;
  color: #1F2D3D;
}

.page-promotions__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 40px;
  padding: 20px 0;
  background-color: #F4F7FB;
}

.page-promotions__hero-image-wrapper {
  width: 100%;
  max-width: 1200px; /* Adjust as needed for hero image */
  margin-bottom: 20px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

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

.page-promotions__hero-content {
  max-width: 800px;
  padding: 0 20px;
}

.page-promotions__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #1F2D3D;
  margin-bottom: 15px;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
}

.page-promotions__description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #1F2D3D;
}

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

.page-promotions__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(47, 107, 255, 0.6);
}

.page-promotions__promotions-grid {
  margin-bottom: 60px;
}

.page-promotions__grid-title {
  text-align: center;
  font-size: 2.5rem;
  color: #1F2D3D;
  margin-bottom: 40px;
  font-weight: bold;
}

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

.page-promotions__promotion-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #D6E2FF;
}

.page-promotions__promotion-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

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

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

.page-promotions__card-title {
  font-size: 1.5rem;
  color: #1F2D3D;
  margin-bottom: 10px;
  font-weight: bold;
  line-height: 1.3;
}

.page-promotions__card-text {
  font-size: 1rem;
  color: #1F2D3D;
  line-height: 1.6;
  margin-bottom: 15px;
}

.page-promotions__card-date {
  font-size: 0.9rem;
  color: #6FA3FF;
  margin-bottom: 20px;
  display: block;
}

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

.page-promotions__card-button:hover {
  opacity: 0.9;
}

.page-promotions__faq-section {
  margin-top: 60px;
  padding: 40px;
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid #D6E2FF;
}

.page-promotions__faq-title {
  text-align: center;
  font-size: 2rem;
  color: #1F2D3D;
  margin-bottom: 30px;
  font-weight: bold;
}

.page-promotions__faq-item {
  margin-bottom: 20px;
  border-bottom: 1px solid #D6E2FF;
  padding-bottom: 20px;
}

.page-promotions__faq-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.page-promotions__faq-question {
  font-size: 1.25rem;
  color: #2F6BFF;
  font-weight: bold;
  margin-bottom: 10px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-promotions__faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: #2F6BFF;
  transition: transform 0.3s ease;
}

.page-promotions__faq-question.active::after {
  transform: rotate(45deg);
}

.page-promotions__faq-answer {
  font-size: 1rem;
  color: #1F2D3D;
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  padding-left: 0;
  padding-right: 0;
}

.page-promotions__faq-answer.active {
  max-height: 200px; /* Adjust based on expected content length */
  padding-top: 10px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promotions__hero-image-wrapper {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .page-promotions {
    padding: 10px 15px 30px;
  }

  .page-promotions__main-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }

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

  .page-promotions__cta-button {
    padding: 12px 25px;
    font-size: 1rem;
  }

  .page-promotions__grid-title {
    font-size: 2rem;
  }

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

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

  .page-promotions__card-title {
    font-size: 1.3rem;
  }

  .page-promotions__faq-title {
    font-size: 1.8rem;
  }

  .page-promotions__faq-question {
    font-size: 1.1rem;
  }

  /* Critical: prevent image overflow on mobile */
  .page-promotions img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-promotions__main-title {
    font-size: clamp(1.5rem, 7vw, 2rem);
  }

  .page-promotions__grid-title {
    font-size: 1.7rem;
  }

  .page-promotions__faq-title {
    font-size: 1.5rem;
  }
}