.page-promotions {
  color: #FFF1E8; /* Text Main color for dark body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #140C0C; /* Body background from custom colors */
}

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

/* 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: #2A1212; /* Card BG as hero background */
  border-bottom: 2px solid #6A1E1E;
}

.page-promotions__hero-container {
  position: relative;
  max-width: 1200px;
  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;
}

.page-promotions__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-promotions__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-promotions__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: #F3C54D; /* Gold color */
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions__intro-text {
  font-size: 1.15rem;
  color: #FFF1E8;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%); /* Button gradient */
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 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 {
  filter: brightness(1.1);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

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

/* General Section Styling */
.page-promotions__overview-section,
.page-promotions__categories-section,
.page-promotions__featured-promo-section,
.page-promotions__how-to-claim-section,
.page-promotions__terms-conditions-section,
.page-promotions__faq-section,
.page-promotions__latest-news-section {
  padding: 60px 0;
  border-bottom: 1px solid #6A1E1E;
}

.page-promotions__overview-section {
  background-color: #140C0C;
}
.page-promotions__categories-section {
  background-color: #2A1212;
}
.page-promotions__featured-promo-section {
  background-color: #140C0C;
}
.page-promotions__how-to-claim-section {
  background-color: #2A1212;
}
.page-promotions__terms-conditions-section {
  background-color: #140C0C;
}
.page-promotions__faq-section {
  background-color: #2A1212;
}
.page-promotions__latest-news-section {
  background-color: #140C0C;
  border-bottom: none;
}

.page-promotions__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: #F3C54D; /* Gold color */
  text-align: center;
  margin-bottom: 25px;
  font-weight: 700;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-promotions__section-description {
  font-size: 1.05rem;
  color: #FFF1E8;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
  line-height: 1.7;
}

/* Feature Grid */
.page-promotions__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-promotions__feature-item {
  background: #2A1212;
  border: 1px solid #6A1E1E;
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-promotions__feature-item img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
  min-width: 200px; /* Min image size */
  min-height: 200px; /* Min image size */
}

.page-promotions__feature-title {
  font-size: 1.5rem;
  color: #F3C54D;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-promotions__feature-item p {
  color: #FFF1E8;
  font-size: 1rem;
}

.page-promotions__call-to-action {
  text-align: center;
  font-size: 1.1rem;
  color: #FFF1E8;
  margin-top: 50px;
  margin-bottom: 30px;
}

/* Category Grid */
.page-promotions__category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-promotions__category-card {
  background: #2A1212;
  border: 1px solid #6A1E1E;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

.page-promotions__category-card p {
  color: #FFF1E8;
  font-size: 1rem;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-promotions__category-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-promotions__category-card ul li {
  color: #FFF1E8;
  margin-bottom: 8px;
  position: relative;
  padding-left: 25px;
}

.page-promotions__category-card ul li::before {
  content: '✔️';
  color: #FFB04A;
  position: absolute;
  left: 0;
  font-size: 0.9em;
  top: 0;
}

.page-promotions__btn-secondary {
  display: inline-block;
  padding: 10px 25px;
  background: #C61F1F; /* Main color */
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 0.95rem;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-align: center;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-promotions__btn-secondary:hover {
  background: #E53030; /* Accent color */
  transform: translateY(-2px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Featured Promo Section */
.page-promotions__promo-card {
  background: #2A1212;
  border: 1px solid #6A1E1E;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions__promo-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  max-width: 100%;
  min-width: 200px; /* Min image size */
  min-height: 200px; /* Min image size */
}

.page-promotions__promo-content {
  padding: 25px;
  flex-grow: 1;
}

.page-promotions__promo-title {
  font-size: 1.8rem;
  color: #F3C54D;
  margin-bottom: 15px;
  font-weight: 700;
}

.page-promotions__promo-description {
  color: #FFF1E8;
  font-size: 1rem;
  margin-bottom: 20px;
}

.page-promotions__promo-details {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.page-promotions__promo-details li {
  color: #FFF1E8;
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
}

.page-promotions__detail-label {
  font-weight: bold;
  color: #FFB04A;
  min-width: 80px;
  margin-right: 10px;
}

/* How To Claim Section */
.page-promotions__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-promotions__step-item {
  background: #2A1212;
  border: 1px solid #6A1E1E;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions__step-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: bold;
  margin: 0 auto 20px auto;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-promotions__step-title {
  font-size: 1.5rem;
  color: #F3C54D;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-promotions__step-item p {
  color: #FFF1E8;
  font-size: 1rem;
}

/* Terms & Conditions Section */
.page-promotions__terms-list ul {
  list-style: none;
  padding: 0;
  max-width: 900px;
  margin: 40px auto 0 auto;
}

.page-promotions__terms-list li {
  background: #2A1212;
  border: 1px solid #6A1E1E;
  border-radius: 8px;
  padding: 18px 25px;
  margin-bottom: 15px;
  color: #FFF1E8;
  font-size: 1rem;
  position: relative;
  padding-left: 40px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-promotions__terms-list li::before {
  content: '•';
  color: #FFB04A;
  position: absolute;
  left: 18px;
  font-size: 1.5em;
  line-height: 1;
  top: 50%;
  transform: translateY(-50%);
}

/* FAQ Section */
details.page-promotions__faq-item {
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid #6A1E1E;
  overflow: hidden;
  background: #2A1212; /* Card BG */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
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: #F3C54D; /* Gold color */
}
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: #1e0e0e; /* Slightly darker for hover */
}
.page-promotions__faq-qtext {
  flex: 1;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
}
.page-promotions__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #FFB04A; /* Gold accent for toggle */
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
}
details.page-promotions__faq-item .page-promotions__faq-answer {
  padding: 0 25px 20px;
  background: #1e0e0e; /* Darker background for answer */
  border-radius: 0 0 10px 10px;
  color: #FFF1E8;
  font-size: 0.95rem;
}

/* Latest News Section */
.page-promotions__news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-promotions__news-card {
  background: #2A1212;
  border: 1px solid #6A1E1E;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-promotions__news-card img {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  min-width: 200px; /* Min image size */
  min-height: 200px; /* Min image size */
}

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

.page-promotions__news-title {
  font-size: 1.3rem;
  margin-bottom: 10px;
  line-height: 1.4;
}

.page-promotions__news-title a {
  color: #F3C54D; /* Gold color */
  text-decoration: none;
  font-weight: 600;
}

.page-promotions__news-title a:hover {
  color: #FFB04A;
  text-decoration: underline;
}

.page-promotions__news-date {
  font-size: 0.85rem;
  color: #FFB04A; /* Gold accent */
  margin-bottom: 15px;
}

.page-promotions__news-excerpt {
  color: #FFF1E8;
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.page-promotions__read-more {
  display: inline-block;
  color: #C61F1F; /* Main color */
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.page-promotions__read-more:hover {
  color: #E53030; /* Accent color */
  text-decoration: underline;
}

/* Responsive Design */
@media (min-width: 769px) {
  .page-promotions__promo-card {
    flex-direction: row;
  }
  .page-promotions__promo-card:nth-child(even) {
    flex-direction: row-reverse;
  }
  .page-promotions__promo-card img {
    width: 40%;
    height: auto;
  }
  .page-promotions__promo-content {
    width: 60%;
  }
}

@media (max-width: 768px) {
  .page-promotions__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .page-promotions__hero-image img {
    border-radius: 8px;
  }
  
  .page-promotions__main-title {
    font-size: 2rem;
  }

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

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

  .page-promotions__overview-section,
  .page-promotions__categories-section,
  .page-promotions__featured-promo-section,
  .page-promotions__how-to-claim-section,
  .page-promotions__terms-conditions-section,
  .page-promotions__faq-section,
  .page-promotions__latest-news-section {
    padding: 40px 0;
  }

  .page-promotions__section-title {
    font-size: 1.6rem;
  }

  .page-promotions__section-description {
    font-size: 0.95rem;
    margin-bottom: 30px;
  }

  .page-promotions__feature-item,
  .page-promotions__category-card,
  .page-promotions__step-item,
  .page-promotions__news-card {
    padding: 20px;
  }

  .page-promotions__feature-title,
  .page-promotions__category-title,
  .page-promotions__step-title {
    font-size: 1.3rem;
  }

  .page-promotions__promo-title {
    font-size: 1.5rem;
  }
  .page-promotions__promo-description,
  .page-promotions__promo-details li,
  .page-promotions__step-item p,
  .page-promotions__terms-list li,
  .page-promotions__news-excerpt {
    font-size: 0.9rem;
  }

  .page-promotions__terms-list li {
    padding: 15px 20px 15px 35px;
  }

  details.page-promotions__faq-item summary.page-promotions__faq-question {
    padding: 15px 20px;
  }
  .page-promotions__faq-qtext {
    font-size: 1rem;
  }
  details.page-promotions__faq-item .page-promotions__faq-answer {
    padding: 0 20px 15px;
  }

  .page-promotions__news-card img {
    
  }
  .page-promotions__news-title {
    font-size: 1.1rem;
  }

  /* Force responsive images */
  .page-promotions img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
  }
  
  /* Force responsive containers */
  .page-promotions__container,
  .page-promotions__hero-container,
  .page-promotions__feature-grid,
  .page-promotions__category-grid,
  .page-promotions__promo-card,
  .page-promotions__steps-grid,
  .page-promotions__news-grid {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-promotions__cta-button,
  .page-promotions__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .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;
    flex-wrap: wrap !important;
    gap: 10px;
  }
}