.page-promotions {
  background-color: #140C0C;
  color: #FFF1E8;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-bottom: 40px;
  overflow-x: hidden;
  width: 100%;
  box-sizing: border-box;
}

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

.page-promotions__hero-image-wrapper {
  width: 100%;
  margin-bottom: 20px;
}

.page-promotions__hero-image {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16/5;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

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

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

.page-promotions__hero-description {
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  margin-bottom: 30px;
  color: #FFF1E8;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions__cta-button {
  display: inline-block;
  background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%);
  color: #140C0C;
  padding: 14px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: none;
  cursor: pointer;
}

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

.page-promotions__list-section {
  max-width: 1390px;
  margin: 40px auto;
  padding: 0 20px;
  text-align: center;
}

.page-promotions__list-title {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  color: #F3C54D;
  margin-bottom: 30px;
  font-weight: 600;
}

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

.page-promotions__promotion-card {
  background-color: #2A1212;
  border: 1px solid #6A1E1E;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

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

.page-promotions__card-image {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.page-promotions__card-title {
  font-size: 1.4rem;
  color: #F3C54D;
  margin: 15px 20px 10px;
  font-weight: 600;
}

.page-promotions__card-description {
  font-size: 0.95rem;
  color: #FFF1E8;
  margin: 0 20px 20px;
  flex-grow: 1;
}

.page-promotions__card-button {
  display: inline-block;
  background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%);
  color: #140C0C;
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin: 0 20px 20px;
  align-self: flex-start;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions__card-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions__info-section {
  max-width: 1000px;
  margin: 60px auto 20px;
  padding: 0 20px;
  background-color: #2A1212;
  border-radius: 10px;
  border: 1px solid #6A1E1E;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.page-promotions__info-title {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  color: #F3C54D;
  text-align: center;
  padding: 30px 0 20px;
  border-bottom: 1px solid #6A1E1E;
  margin-bottom: 20px;
}

.page-promotions__info-description {
  font-size: 1rem;
  color: #FFF1E8;
  margin-bottom: 15px;
  padding: 0 10px;
}

.page-promotions__info-list {
  list-style: none;
  padding: 0;
  margin: 0 10px 20px;
}

.page-promotions__info-list-item {
  background-color: #140C0C;
  border-left: 3px solid #E53030;
  padding: 10px 15px;
  margin-bottom: 10px;
  border-radius: 5px;
  color: #FFF1E8;
  font-size: 0.95rem;
}

.page-promotions__text-link {
  color: #F3C54D;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-promotions__text-link:hover {
  color: #FFB04A;
}

/* Responsive Adjustments */
@media (max-width: 849px) {
  .page-promotions__hero-title {
    font-size: clamp(1.6rem, 5vw, 2.5rem);
  }
  .page-promotions__hero-description {
    font-size: clamp(0.9rem, 3vw, 1.1rem);
  }
  .page-promotions__list-title {
    font-size: clamp(1.4rem, 4.5vw, 2.2rem);
  }
  .page-promotions__promotion-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  .page-promotions__info-title {
    font-size: clamp(1.3rem, 4vw, 2rem);
  }
}

@media (max-width: 768px) {
  .page-promotions img {
    max-width: 100%;
    height: auto;
  }
  .page-promotions__hero-section,
  .page-promotions__list-section,
  .page-promotions__info-section {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 549px) {
  .page-promotions__hero-title {
    font-size: clamp(1.4rem, 6vw, 2.2rem);
  }
  .page-promotions__hero-description {
    font-size: clamp(0.85rem, 3.5vw, 1rem);
  }
  .page-promotions__cta-button {
    padding: 12px 25px;
    font-size: 1rem;
  }
  .page-promotions__list-title {
    font-size: clamp(1.2rem, 5vw, 2rem);
  }
  .page-promotions__promotion-grid {
    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__info-title {
    font-size: clamp(1.2rem, 4.5vw, 1.8rem);
  }
}