.page-promotions {
  background-color: #0D0E12;
  color: #FFF3E6;
  padding-top: 10px; /* Small top padding, body handles header offset */
}

.page-promotions__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 12px 40px;
  max-width: 1390px;
  margin: 0 auto;
  box-sizing: border-box;
  overflow: hidden;
}

.page-promotions__hero-banner {
  width: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

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

.page-promotions__hero-content {
  margin-top: 30px;
  max-width: 900px;
  width: 100%;
}

.page-promotions__main-title {
  font-weight: 700;
  line-height: 1.2;
  color: #FFF3E6;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
  font-size: clamp(1.8rem, 4.5vw, 3rem);
}

.page-promotions__description {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #FFF3E6;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
  color: #FFF3E6;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 15px rgba(255, 165, 58, 0.4);
}

.page-promotions__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 165, 58, 0.6);
}

.page-promotions__promotions-grid {
  padding: 50px 12px;
  max-width: 1390px;
  margin: 0 auto;
  box-sizing: border-box;
}

.page-promotions__grid-header {
  text-align: center;
  margin-bottom: 40px;
}

.page-promotions__grid-title {
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  color: #FFF3E6;
  margin-bottom: 15px;
  font-weight: 700;
}

.page-promotions__grid-description {
  font-size: 1.05rem;
  color: #FFF3E6;
  max-width: 700px;
  margin: 0 auto;
}

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

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

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

.page-promotions__card-image-wrapper {
  margin: 0;
  overflow: hidden;
}

.page-promotions__card-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4/3; /* Maintain aspect ratio */
  object-fit: cover;
  filter: none; /* Ensure no color filters */
  min-width: 200px; /* Enforce min size */
  min-height: 200px; /* Enforce min size */
}

.page-promotions__card-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  height: calc(100% - 200px); /* Adjust based on image height for consistent card height */
}

.page-promotions__card-title {
  font-size: 1.35rem;
  color: #FFF3E6;
  margin-bottom: 10px;
  font-weight: 600;
  line-height: 1.4;
}

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

.page-promotions__card-button {
  display: inline-block;
  padding: 10px 20px;
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
  color: #FFF3E6;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
  font-size: 1rem;
  transition: background 0.3s ease, transform 0.3s ease;
  text-align: center;
}

.page-promotions__card-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(255, 165, 58, 0.4);
}

.page-promotions__terms-section {
  padding: 60px 12px;
  max-width: 1000px;
  margin: 0 auto;
  box-sizing: border-box;
  text-align: center;
}

.page-promotions__terms-title {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  color: #FFF3E6;
  margin-bottom: 25px;
  font-weight: 700;
}

.page-promotions__terms-content {
  background-color: #17191F;
  border-radius: 12px;
  padding: 30px;
  border: 1px solid #A84F0C;
}

.page-promotions__terms-paragraph {
  font-size: 1rem;
  line-height: 1.7;
  color: #FFF3E6;
  margin-bottom: 20px;
}

.page-promotions__terms-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
  text-align: left;
}

.page-promotions__terms-list-item {
  font-size: 0.95rem;
  color: #FFF3E6;
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.page-promotions__terms-list-item::before {
  content: '👉';
  position: absolute;
  left: 0;
  color: #FF8C1A;
}

.page-promotions__terms-link {
  display: inline-block;
  color: #FF8C1A;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  transition: color 0.3s ease;
}

.page-promotions__terms-link:hover {
  color: #FFA53A;
  text-decoration: underline;
}

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

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

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

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

  .page-promotions__promotions-grid {
    padding: 30px 12px;
  }

  .page-promotions__grid-title {
    font-size: clamp(1.3rem, 5vw, 2rem);
  }

  .page-promotions__grid-description {
    font-size: 0.95rem;
  }

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

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

  .page-promotions__card-description {
    font-size: 0.9rem;
  }

  .page-promotions__card-button {
    padding: 8px 15px;
    font-size: 0.9rem;
  }

  .page-promotions__terms-section {
    padding: 40px 12px;
  }

  .page-promotions__terms-title {
    font-size: clamp(1.3rem, 5vw, 2rem);
  }

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

  .page-promotions__terms-paragraph,
  .page-promotions__terms-list-item {
    font-size: 0.9rem;
  }

  .page-promotions__hero-banner img,
  .page-promotions__card-image-wrapper img {
    max-width: 100%;
    height: auto; /* Ensure images are responsive and don't overflow */
  }
}

@media (max-width: 549px) {
  .page-promotions__main-title {
    font-size: clamp(1.3rem, 7vw, 2.2rem);
  }
  .page-promotions__description {
    font-size: 0.9rem;
  }
  .page-promotions__grid-title {
    font-size: clamp(1.2rem, 6vw, 1.8rem);
  }
  .page-promotions__grid-description {
    font-size: 0.85rem;
  }
  .page-promotions__terms-title {
    font-size: clamp(1.2rem, 6vw, 1.8rem);
  }
  .page-promotions__terms-paragraph,
  .page-promotions__terms-list-item {
    font-size: 0.85rem;
  }
}