.page-promotions {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #FFF6D6; /* Main text color for dark background */
  background-color: #0A0A0A; /* Page background */
  margin: 0;
  padding: 0;
  overflow-x: hidden; /* Prevent horizontal scroll */
}

.page-promotions__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
}

.page-promotions__center-content {
  text-align: center;
}

/* Headings */
.page-promotions h1,
.page-promotions h2,
.page-promotions h3,
.page-promotions h4 {
  color: #FFD36B; /* Highlight color for headings */
  margin-top: 0;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-promotions h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: bold;
  letter-spacing: 1px;
}

.page-promotions h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 10px;
}

.page-promotions h2::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #F2C14E;
  border-radius: 2px;
}

.page-promotions h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  color: #F2C14E;
}

/* Hero Section */
.page-promotions__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  background-color: #0A0A0A;
  overflow: hidden;
}

.page-promotions__hero-container {
  position: relative;
  max-width: 1400px; /* Slightly wider for hero */
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.page-promotions__hero-image {
  width: 100%;
  margin-bottom: 30px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transform: translateY(0);
  transition: transform 0.5s ease-out;
}

.page-promotions__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.page-promotions__hero-image img:hover {
  transform: scale(1.03);
}

.page-promotions__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-promotions__hero-content h1 {
  color: #FFD36B;
  text-shadow: 0 0 10px rgba(255, 211, 107, 0.6);
  margin-bottom: 20px;
}

.page-promotions__hero-content p {
  font-size: 1.1rem;
  color: #FFF6D6;
  max-width: 800px;
  margin: 0 auto 30px auto;
}

.page-promotions__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: none;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-promotions__cta-button:hover {
  background: linear-gradient(180deg, #FFD36B 0%, #F2C14E 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* Intro Section */
.page-promotions__intro-section {
  padding: 60px 20px;
  background-color: #0A0A0A; /* Background color from custom colors */
  text-align: center;
}

.page-promotions__intro-section p {
  max-width: 900px;
  margin: 0 auto 20px auto;
  font-size: 1.05rem;
  color: #FFF6D6; /* Main text color */
}

/* Category Section */
.page-promotions__category-section {
  padding: 80px 20px;
  background-color: #0A0A0A; /* Light bg equivalent, using theme dark bg */
}

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

.page-promotions__card {
  background-color: #111111; /* Card BG from custom colors */
  border: 1px solid #3A2A12; /* Border from custom colors */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  text-align: center;
  padding-bottom: 30px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
}

.page-promotions__card img {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.page-promotions__card:hover img {
  transform: scale(1.05);
}

.page-promotions__card-title {
  font-size: 1.4rem;
  color: #FFD36B;
  margin-bottom: 15px;
  padding: 0 20px;
}

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

.page-promotions__card-button {
  display: inline-block;
  padding: 12px 25px;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
  max-width: calc(100% - 40px);
  margin: 0 auto;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-promotions__card-button:hover {
  background: linear-gradient(180deg, #FFD36B 0%, #F2C14E 100%);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Details Section */
.page-promotions__details-section {
  padding: 80px 20px;
  background-color: #0A0A0A; /* Dark background */
}

.page-promotions__detail-item {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions__detail-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.page-promotions__detail-title {
  font-size: 1.6rem;
  color: #FFD36B;
  margin-bottom: 20px;
  text-align: left;
}

.page-promotions__detail-text {
  font-size: 1.05rem;
  color: #FFF6D6;
  margin-bottom: 20px;
}

.page-promotions__detail-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
  font-size: 1rem;
  color: #FFF6D6;
}

.page-promotions__detail-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
}

.page-promotions__detail-list li::before {
  content: '✓';
  color: #F2C14E;
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
}

.page-promotions__btn-primary {
  display: inline-block;
  padding: 14px 30px;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-promotions__btn-primary:hover {
  background: linear-gradient(180deg, #FFD36B 0%, #F2C14E 100%);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* FAQ Section */
.page-promotions__faq-section {
  padding: 80px 20px;
  background-color: #0A0A0A; /* Light bg equivalent, using theme dark bg */
}

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

details.page-promotions__faq-item {
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid #3A2A12; /* Border from custom colors */
  overflow: hidden;
  background-color: #111111; /* Card BG from custom colors */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

details.page-promotions__faq-item summary.page-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
  color: #FFD36B;
  font-weight: 600;
}

details.page-promotions__faq-item summary.page-promotions__faq-question::-webkit-details-marker {
  display: none;
}

details.page-promotions__faq-item summary.page-promotions__faq-question:hover {
  background-color: rgba(255, 211, 107, 0.1); /* Slight hover effect */
}

.page-promotions__faq-qtext {
  flex: 1;
  font-size: 1.1rem;
  line-height: 1.5;
  text-align: left;
}

.page-promotions__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #F2C14E;
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
}

details.page-promotions__faq-item .page-promotions__faq-answer {
  padding: 0 25px 25px;
  background-color: #0A0A0A; /* Page background for answer area */
  border-radius: 0 0 10px 10px;
  color: #FFF6D6;
  font-size: 1rem;
}

/* Bottom CTA Section */
.page-promotions__cta-bottom {
  padding: 80px 20px;
  background-color: #0A0A0A; /* Dark background */
  text-align: center;
}

.page-promotions__cta-bottom .page-promotions__section-title {
  color: #FFD36B;
}

.page-promotions__cta-bottom .page-promotions__intro-text {
  max-width: 800px;
  margin: 0 auto 40px auto;
  font-size: 1.1rem;
  color: #FFF6D6;
}

/* Responsive styles */
@media (max-width: 768px) {
  .page-promotions {
    font-size: 15px;
    line-height: 1.5;
  }

  .page-promotions__container {
    padding: 15px;
  }

  .page-promotions h1 {
    font-size: 2.5rem;
  }

  .page-promotions h2 {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .page-promotions h3 {
    font-size: 1.3rem;
  }

  .page-promotions__hero-section {
    padding-top: 10px !important; /* body handles header offset */
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-promotions__hero-image {
    margin-bottom: 20px;
  }

  .page-promotions__hero-content p {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .page-promotions__cta-button {
    padding: 12px 30px;
    font-size: 16px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-promotions__intro-section,
  .page-promotions__category-section,
  .page-promotions__details-section,
  .page-promotions__faq-section,
  .page-promotions__cta-bottom {
    padding: 40px 15px;
  }

  .page-promotions__category-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .page-promotions__card img {
    height: 200px; /* Adjust height for mobile */
  }

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

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

  .page-promotions__card-button {
    padding: 10px 20px;
    font-size: 0.95rem;
    max-width: calc(100% - 30px); /* Adjust for 15px padding */
  }

  .page-promotions__detail-item {
    padding: 20px;
    margin-bottom: 20px;
  }

  .page-promotions__detail-title {
    font-size: 1.4rem;
  }

  .page-promotions__detail-text {
    font-size: 1rem;
  }

  .page-promotions__detail-list li {
    font-size: 0.95rem;
  }

  .page-promotions__btn-primary {
    padding: 12px 25px;
    font-size: 0.95rem;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  details.page-promotions__faq-item summary.page-promotions__faq-question {
    padding: 15px 20px;
  }

  .page-promotions__faq-qtext {
    font-size: 1rem;
  }

  .page-promotions__faq-toggle {
    font-size: 20px;
    width: 24px;
  }

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

  /* Image responsive overrides */
  .page-promotions img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-promotions__section,
  .page-promotions__card,
  .page-promotions__container,
  .page-promotions__cta-buttons,
  .page-promotions__button-group,
  .page-promotions__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}