.page-promotions {
  color: #FFFFFF;
  background-color: #100224; /* Deep purple-black background */
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
}

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

.page-promotions__hero-image {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 1920 / 600;
  object-fit: cover;
  min-width: 200px; /* Ensure minimum size */
  min-height: 200px;
}

.page-promotions__hero-content {
  padding: 40px 20px;
  max-width: 900px;
  margin: 0 auto;
  background-color: rgba(16, 2, 36, 0.8); /* Semi-transparent overlay for text readability */
  border-radius: 8px;
  margin-top: -80px; /* Overlap slightly with image for visual flow */
  position: relative;
  z-index: 1;
}

.page-promotions__main-title {
  font-size: clamp(2rem, 4vw, 2.5rem); /* Responsive font size for H1 */
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #26A9E0; /* Primary blue for title */
  letter-spacing: 0.05em;
  text-shadow: 0 0 10px rgba(38, 169, 224, 0.5);
}

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

.page-promotions__cta-button {
  display: inline-block;
  background: linear-gradient(90deg, #EA7C07 0%, #FF5E3A 100%); /* Orange-red gradient for CTA */
  color: #FFFFFF;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(234, 124, 7, 0.4);
  min-width: 200px; /* Ensure button is not too small */
}

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

.page-promotions__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.2rem);
  font-weight: 700;
  text-align: center;
  margin: 60px 20px 40px;
  color: #26A9E0;
  position: relative;
  padding-bottom: 15px;
}

.page-promotions__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #26A9E0 0%, #EA7C07 100%);
  border-radius: 2px;
}

.page-promotions__category-section,
.page-promotions__featured-section,
.page-promotions__guide-section,
.page-promotions__faq-section,
.page-promotions__cta-final-section {
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

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

.page-promotions__promo-card {
  background-color: #1a0330; /* Slightly lighter dark background for cards */
  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;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 20px;
}

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

.page-promotions__card-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
  border-bottom: 3px solid #26A9E0;
}

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

.page-promotions__card-description {
  font-size: 1rem;
  color: #CCCCCC;
  padding: 0 15px;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-promotions__card-button {
  display: inline-block;
  background-color: #26A9E0; /* Primary blue for card buttons */
  color: #FFFFFF;
  padding: 10px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.page-promotions__card-button:hover {
  background-color: #1f8ec4;
}

.page-promotions__featured-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.page-promotions__promo-item {
  background-color: #1a0330;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.page-promotions__item-image {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

.page-promotions__item-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

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

.page-promotions__item-description {
  font-size: 1rem;
  color: #CCCCCC;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-promotions__item-date {
  font-size: 0.9rem;
  color: #999999;
  margin-bottom: 15px;
}

.page-promotions__item-button {
  display: inline-block;
  background-color: #EA7C07;
  color: #FFFFFF;
  padding: 10px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
  align-self: flex-start;
}

.page-promotions__item-button:hover {
  background-color: #e06d06;
}

.page-promotions__guide-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.page-promotions__guide-item {
  background-color: #1a0330;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.page-promotions__guide-step-title {
  font-size: 1.4rem;
  color: #26A9E0;
  margin-bottom: 10px;
}

.page-promotions__guide-step-description {
  font-size: 1rem;
  color: #CCCCCC;
}

.page-promotions__guide-cta {
  text-align: center;
  margin-top: 40px;
}

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

.page-promotions__faq-accordion {
  margin-top: 30px;
}

.page-promotions__faq-item {
  background-color: #1a0330;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

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

.page-promotions__faq-question:hover,
.page-promotions__faq-question:focus {
  background-color: #1f8ec4;
}

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

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

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

.page-promotions__faq-answer p {
  color: #CCCCCC;
  padding: 15px 0;
  margin: 0;
}

.page-promotions__cta-final-section {
  background-color: #0d021c; /* Even darker background for final CTA */
  text-align: center;
  padding: 60px 20px;
  border-radius: 12px;
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}

.page-promotions__cta-final-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: #FFFFFF;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.page-promotions__cta-final-description {
  font-size: 1.1rem;
  color: #E0E0E0;
  margin-bottom: 40px;
  max-width: 800px;
}

.page-promotions__cta-button--large {
  padding: 18px 40px;
  font-size: 1.2rem;
}

.page-promotions__cta-final-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  min-width: 200px;
  min-height: 200px;
}

/* Responsive adjustments */
@media (min-width: 769px) {
  .page-promotions__featured-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .page-promotions__promo-item {
    flex-direction: row;
    text-align: left;
  }
  .page-promotions__item-image {
    width: 40%;
    height: auto;
  }
  .page-promotions__item-content {
    width: 60%;
    padding: 30px;
  }
  .page-promotions__item-button {
    align-self: flex-start;
  }
  .page-promotions__cta-final-section {
    flex-direction: row;
    text-align: left;
    justify-content: space-between;
    gap: 40px;
  }
  .page-promotions__cta-content {
    flex: 1;
    text-align: left;
  }
  .page-promotions__cta-final-image {
    flex-shrink: 0;
    width: 400px;
    height: auto;
  }
}

@media (max-width: 768px) {
  .page-promotions__hero-content {
    margin-top: -50px;
    padding: 30px 15px;
  }
  .page-promotions__main-title {
    font-size: 1.8rem;
  }
  .page-promotions__hero-description {
    font-size: 1rem;
  }
  .page-promotions__cta-button {
    padding: 12px 25px;
    font-size: 1rem;
  }
  .page-promotions__section-title {
    margin: 40px 15px 30px;
    font-size: 1.6rem;
  }
  .page-promotions__category-section,
  .page-promotions__featured-section,
  .page-promotions__guide-section,
  .page-promotions__faq-section,
  .page-promotions__cta-final-section {
    padding: 30px 15px;
  }
  .page-promotions__promo-card {
    padding-bottom: 15px;
  }
  .page-promotions__card-image {
    height: 200px;
  }
  .page-promotions__card-title {
    font-size: 1.3rem;
  }
  .page-promotions__card-description {
    font-size: 0.95rem;
  }
  .page-promotions__promo-item {
    flex-direction: column;
    text-align: center;
  }
  .page-promotions__item-content {
    padding: 20px;
  }
  .page-promotions__item-title {
    font-size: 1.4rem;
  }
  .page-promotions__item-description {
    font-size: 0.95rem;
  }
  .page-promotions__item-button {
    align-self: center;
  }
  .page-promotions__guide-item {
    padding: 20px;
  }
  .page-promotions__guide-step-title {
    font-size: 1.2rem;
  }
  .page-promotions__faq-question {
    padding: 15px 20px;
    font-size: 1rem;
  }
  .page-promotions__faq-answer p {
    padding: 10px 0;
  }
  .page-promotions__cta-final-section {
    padding: 40px 15px;
  }
  .page-promotions__cta-final-title {
    font-size: 1.8rem;
  }
  .page-promotions__cta-final-description {
    font-size: 1rem;
  }
  .page-promotions__cta-button--large {
    padding: 15px 30px;
    font-size: 1.1rem;
  }
  /* Mobile image overflow prevention */
  .page-promotions__hero-image,
  .page-promotions__card-image,
  .page-promotions__item-image,
  .page-promotions__cta-final-image {
    max-width: 100%;
    height: auto;
  }
  .page-promotions__cta-final-image {
    width: 100%; /* Ensure it takes full width within its container */
  }
}

/* Ensure all content area images are at least 200px wide/high */
.page-promotions img {
  min-width: 200px;
  min-height: 200px;
  box-sizing: border-box;
}

.page-promotions__promo-card .page-promotions__card-image,
.page-promotions__promo-item .page-promotions__item-image,
.page-promotions__cta-final-section .page-promotions__cta-final-image {
  width: 100%; /* Ensure images fill their container */
  height: auto; /* Maintain aspect ratio */
}

/* Specific adjustment to prevent very narrow images on mobile if flex-item */
@media (max-width: 768px) {
  .page-promotions__promo-item .page-promotions__item-image {
    width: 100%;
    height: auto;
  }
  .page-promotions__cta-final-section .page-promotions__cta-final-image {
    width: 100%;
    height: auto;
  }
}