.page-promotions {
  padding-top: 10px; /* Small top padding for the first section */
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
  color: #FFFFFF;
  background-color: #0a0909; /* Deep dark background */
}

.page-promotions__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1390px;
  margin: 0 auto 40px auto;
  padding: 0 15px;
  text-align: center;
}

.page-promotions__hero-image-container {
  width: 100%;
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 12px;
}

.page-promotions__hero-image-container img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 5;
  object-fit: cover;
  object-position: center;
  filter: none; /* Ensure no CSS filters are applied */
}

.page-promotions__hero-content {
  max-width: 900px;
}

.page-promotions__main-title {
  font-size: clamp(1.8rem, 4.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  margin-bottom: 20px;
}

.page-promotions__hero-description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #E0E0E0;
}

.page-promotions__cta-button {
  display: inline-block;
  background-color: #26A9E0; /* Main brand color */
  color: #FFFFFF;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
}

.page-promotions__cta-button:hover {
  background-color: #1e87c2; /* Slightly darker main color */
  transform: translateY(-2px);
}

.page-promotions__section-title {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 700;
  color: #FFFFFF;
  text-align: center;
  margin: 60px auto 40px auto;
  max-width: 800px;
  padding: 0 15px;
}

.page-promotions__offers-list {
  max-width: 1390px;
  margin: 0 auto 60px auto;
  padding: 0 15px;
}

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

.page-promotions__offer-card {
  background-color: #1c1c1c;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions__offer-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

.page-promotions__offer-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  filter: none; /* Ensure no CSS filters are applied */
  min-width: 200px;
  min-height: 200px;
}

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

.page-promotions__card-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #26A9E0;
  margin-bottom: 15px;
  line-height: 1.3;
}

.page-promotions__card-description {
  font-size: 1rem;
  color: #B0B0B0;
  line-height: 1.6;
  margin-bottom: 20px;
}

.page-promotions__card-button {
  display: inline-block;
  background-color: #EA7C07; /* Login color for CTA on cards */
  color: #FFFFFF;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background-color 0.3s ease;
  border: none;
}

.page-promotions__card-button:hover {
  background-color: #c06506; /* Slightly darker login color */
}

.page-promotions__why-choose {
  max-width: 1390px;
  margin: 0 auto 60px auto;
  padding: 0 15px;
}

.page-promotions__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  text-align: center;
}

.page-promotions__feature-item {
  background-color: #1c1c1c;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions__feature-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #26A9E0;
  margin-bottom: 15px;
}

.page-promotions__feature-description {
  font-size: 1rem;
  color: #B0B0B0;
  line-height: 1.6;
}

.page-promotions__faq-section {
  max-width: 1000px;
  margin: 0 auto 80px auto;
  padding: 0 15px;
}

.page-promotions__faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.page-promotions__faq-item {
  background-color: #1c1c1c;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-promotions__faq-question {
  font-size: 1.2rem;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 10px;
  cursor: pointer;
}

.page-promotions__faq-answer {
  font-size: 1rem;
  color: #B0B0B0;
  line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 849px) {
  .page-promotions__hero-section {
    margin-bottom: 30px;
  }

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

  .page-promotions__hero-description {
    font-size: 1rem;
  }

  .page-promotions__section-title {
    margin-top: 40px;
    margin-bottom: 30px;
  }

  .page-promotions__offers-list,
  .page-promotions__why-choose,
  .page-promotions__faq-section {
    margin-bottom: 40px;
  }

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

  .page-promotions__feature-item {
    padding: 25px;
  }

  .page-promotions__faq-item {
    padding: 20px;
  }

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

@media (max-width: 549px) {
  .page-promotions {
    padding-left: 12px;
    padding-right: 12px;
  }
  .page-promotions__hero-section {
    padding: 0;
  }
  .page-promotions__hero-description {
    text-align: left;
  }
  .page-promotions__section-title {
    font-size: clamp(1.4rem, 7vw, 2rem);
    margin-top: 30px;
    margin-bottom: 25px;
  }
  .page-promotions__cta-button {
    padding: 12px 25px;
    font-size: 1rem;
  }
  .page-promotions__offer-card img, 
  .page-promotions__why-choose img { /* Ensure all content images are responsive */
    max-width: 100%; 
    height: auto;
    min-width: 200px;
    min-height: 200px;
  }
  .page-promotions__hero-image-container img {
    aspect-ratio: 4 / 3; /* Adjust aspect ratio for better mobile view if desired, or keep 16/5 */
  }
  .page-promotions__feature-item {
    padding: 20px;
  }
  .page-promotions__faq-item {
    padding: 18px;
  }
  .page-promotions__faq-question {
    font-size: 1rem;
  }
  .page-promotions__faq-answer {
    font-size: 0.9rem;
  }
}

/* Ensure all images within .page-promotions content area are responsive and meet min size */
.page-promotions img {
  max-width: 100%;
  height: auto;
  display: block;
  filter: none; /* Global rule to prevent filters */
}

/* Specific rule to prevent content area images from being too small */
.page-promotions .page-promotions__offer-card img,
.page-promotions .page-promotions__why-choose img { /* Target images within content sections */
  min-width: 200px;
  min-height: 200px;
}