.page-promotions {
  background-color: #140C0C;
  color: #FFF1E8;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-promotions__hero-section {
  position: relative;
  overflow: hidden;
  padding-bottom: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding */
}

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

.page-promotions__hero-content {
  padding: 20px;
  max-width: 900px;
  margin-top: 20px;
}

.page-promotions__hero-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #FFF1E8;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
}

.page-promotions__hero-description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #FFF1E8;
}

.page-promotions__hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-promotions__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  white-space: nowrap;
  font-size: 1rem;
  border: none;
  cursor: pointer;
}

.page-promotions__btn--primary {
  background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%);
  color: #140C0C;
}

.page-promotions__btn--primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-promotions__btn--secondary {
  background-color: #7E0D0D;
  color: #FFF1E8;
  border: 1px solid #6A1E1E;
}

.page-promotions__btn--secondary:hover {
  background-color: #C61F1F;
  transform: translateY(-2px);
}

.page-promotions__section-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: #F3C54D;
  text-align: center;
  margin: 60px 0 40px;
  font-weight: bold;
  position: relative;
  padding-bottom: 10px;
}

.page-promotions__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #F3C54D, transparent);
}

.page-promotions__offers-section,
.page-promotions__guide-section,
.page-promotions__types-section,
.page-promotions__blog-news-section,
.page-promotions__faq-section {
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

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

.page-promotions__offer-card,
.page-promotions__news-card {
  background-color: #2A1212;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #6A1E1E;
}

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

.page-promotions__offer-image,
.page-promotions__news-image {
  width: 100%;
  height: 225px; /* Fixed height for consistency, will be object-fit */
  object-fit: cover;
  display: block;
}

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

.page-promotions__card-title,
.page-promotions__news-title {
  font-size: 1.4rem;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-promotions__card-title a,
.page-promotions__news-title a {
  color: #F3C54D;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-promotions__card-title a:hover,
.page-promotions__news-title a:hover {
  color: #FFB04A;
}

.page-promotions__card-description,
.page-promotions__news-description {
  font-size: 0.95rem;
  color: #FFF1E8;
  margin-bottom: 15px;
}

.page-promotions__news-date {
  font-size: 0.85rem;
  color: #E53030;
  margin-bottom: 10px;
}

.page-promotions__card-actions {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.page-promotions__btn--details {
  background-color: #6A1E1E;
  color: #FFF1E8;
  padding: 8px 15px;
  font-size: 0.9rem;
  border-radius: 6px;
}

.page-promotions__btn--details:hover {
  background-color: #7E0D0D;
}

.page-promotions__btn--join {
  background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%);
  color: #140C0C;
  padding: 8px 15px;
  font-size: 0.9rem;
  border-radius: 6px;
}

.page-promotions__btn--join:hover {
  opacity: 0.9;
}

.page-promotions__btn--read-more {
  background-color: #6A1E1E;
  color: #FFF1E8;
  padding: 8px 15px;
  font-size: 0.9rem;
  border-radius: 6px;
}

.page-promotions__btn--read-more:hover {
  background-color: #7E0D0D;
}

.page-promotions__guide-content {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.page-promotions__guide-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  border: 1px solid #6A1E1E;
}

.page-promotions__guide-list {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
  min-width: 300px;
}

.page-promotions__guide-list li {
  background-color: #2A1212;
  border: 1px solid #6A1E1E;
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.page-promotions__guide-list li:last-child {
  margin-bottom: 0;
}

.page-promotions__guide-step-number {
  font-size: 1.8rem;
  font-weight: bold;
  color: #F3C54D;
  flex-shrink: 0;
}

.page-promotions__guide-list p {
  margin: 0;
  font-size: 1rem;
  color: #FFF1E8;
}

.page-promotions__guide-list strong {
  color: #FFB04A;
}

.page-promotions__guide-btn {
  margin-top: 30px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions__type-item {
  background-color: #2A1212;
  border: 1px solid #6A1E1E;
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease;
}

.page-promotions__type-item:hover {
  transform: translateY(-5px);
}

.page-promotions__type-title {
  font-size: 1.5rem;
  color: #FFB04A;
  margin-bottom: 10px;
}

.page-promotions__type-description {
  font-size: 0.95rem;
  color: #FFF1E8;
}

.page-promotions__view-all {
  text-align: center;
  margin-top: 40px;
}

.page-promotions__faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.page-promotions__faq-item {
  background-color: #2A1212;
  border: 1px solid #6A1E1E;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-promotions__faq-question {
  background-color: #C61F1F;
  color: #FFF1E8;
  width: 100%;
  padding: 18px 25px;
  text-align: left;
  font-size: 1.1rem;
  font-weight: bold;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

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

.page-promotions__faq-question:hover {
  background-color: #E53030;
}

.page-promotions__faq-answer {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-promotions__faq-answer.active {
  max-height: 200px; /* Adjust based on content */
  padding: 15px 25px 25px;
}

.page-promotions__faq-answer p {
  margin-bottom: 15px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-promotions__guide-content {
    flex-direction: column;
  }
  .page-promotions__guide-image {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .page-promotions__hero-title {
    font-size: clamp(2rem, 6vw, 2.8rem);
  }
  .page-promotions__hero-description {
    font-size: 1rem;
  }
  .page-promotions__hero-buttons {
    flex-direction: column;
  }
  .page-promotions__btn {
    width: 100%;
  }
  .page-promotions__offer-grid,
  .page-promotions__types-grid,
  .page-promotions__news-grid {
    grid-template-columns: 1fr;
  }
  .page-promotions__offer-image,
  .page-promotions__news-image {
    height: auto; /* Allow height to adjust */
    max-width: 100%;
  }
  .page-promotions__offers-section,
  .page-promotions__guide-section,
  .page-promotions__types-section,
  .page-promotions__blog-news-section,
  .page-promotions__faq-section {
    padding: 30px 15px;
  }
  .page-promotions__section-title {
    margin: 40px 0 30px;
  }
  /* Ensure all content area images are responsive and not smaller than 200px */
  .page-promotions img {
    max-width: 100%;
    height: auto;
  }
  .page-promotions__offer-image,
  .page-promotions__news-image, 
  .page-promotions__guide-image {
    min-width: 200px; /* Enforce minimum size for content images */
    min-height: 200px;
  }
}

@media (max-width: 480px) {
  .page-promotions__hero-content {
    padding: 15px;
  }
  .page-promotions__btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  .page-promotions__card-title,
  .page-promotions__news-title {
    font-size: 1.2rem;
  }
  .page-promotions__faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }
  .page-promotions__faq-answer.active {
    padding: 10px 20px 20px;
  }
}