:root {
  --primary-color: #C91F17;
  --secondary-color: #E53935;
  --button-gradient: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%);
  --card-bg: #D32F2F;
  --section-bg: #B71C1C;
  --text-main: #FFF5E1;
  --border-color: #F2B544;
  --glow-color: #FFCC66;
  --gold-color: #F4D34D;
  --deep-red: #7A0E0E;
  --dark-text: #333333; /* Default dark text for light backgrounds */
  --light-text: #ffffff; /* Default light text for dark backgrounds */
}

/* Base styles for the page-promotions scope */
.page-promotions {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-main); /* Default text color for the main content area */
  background-color: var(--section-bg); /* Main background color for sections */
}

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

.page-promotions__section {
  padding: 60px 0;
  text-align: center;
  position: relative;
}

.page-promotions__section-title {
  font-size: 38px;
  font-weight: bold;
  color: var(--text-main);
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-promotions__section-description {
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto 40px;
  color: var(--light-text);
}

/* 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;
  /* body padding-top handles header offset, this is for visual spacing */
  padding-top: 10px;
  background-color: var(--deep-red); /* Using a darker red for hero background */
}

.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%; /* Ensure it takes full width within max-width */
}

.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);
  border: 2px solid var(--gold-color);
}

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

.page-promotions__hero-content h1 {
  font-size: 48px;
  color: var(--gold-color);
  margin-bottom: 15px;
  line-height: 1.1;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
  font-weight: 900;
}

.page-promotions__hero-description {
  font-size: 20px;
  color: var(--light-text);
  margin-bottom: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--button-gradient);
  color: #000000; /* Ensure dark text on gold button for contrast */
  text-decoration: none;
  border-radius: 8px;
  font-size: 20px;
  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%; /* For mobile responsiveness */
  box-sizing: border-box; /* For mobile responsiveness */
  white-space: normal; /* For mobile responsiveness */
  word-wrap: break-word; /* For mobile responsiveness */
}

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

.page-promotions__cta-button--centered {
  margin-left: auto;
  margin-right: auto;
  display: block; /* To center it */
}

/* Overview Section */
.page-promotions__overview-section {
  background-color: var(--section-bg);
  padding-top: 80px;
  padding-bottom: 80px;
}

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

.page-promotions__card {
  background-color: var(--card-bg); /* Custom card background */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--border-color);
}

.page-promotions__card img {
  width: 100%;
  max-width: 250px; /* Adjust max-width for card images */
  height: auto;
  object-fit: contain;
  margin: 0 auto 20px;
  border-radius: 8px;
  border: 1px solid var(--gold-color);
}

.page-promotions__card-title {
  font-size: 24px;
  color: var(--gold-color);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promotions__card-text {
  font-size: 16px;
  color: var(--light-text);
  margin-bottom: 25px;
  flex-grow: 1; /* Allow text to take available space */
}

.page-promotions__btn-primary {
  display: inline-block;
  padding: 12px 25px;
  background: var(--button-gradient);
  color: #000000; /* Dark text on gold button */
  text-decoration: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
  max-width: 100%; /* For mobile responsiveness */
  box-sizing: border-box; /* For mobile responsiveness */
  white-space: normal; /* For mobile responsiveness */
  word-wrap: break-word; /* For mobile responsiveness */
}

.page-promotions__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  filter: brightness(1.1);
}

/* Featured Offers Section */
.page-promotions__featured-offers {
  background-color: var(--primary-color); /* Use primary color for contrast */
  padding-top: 80px;
  padding-bottom: 80px;
}

.page-promotions__offer-category {
  margin-bottom: 60px;
}

.page-promotions__category-title {
  font-size: 32px;
  color: var(--gold-color);
  margin-bottom: 30px;
  font-weight: bold;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

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

.page-promotions__card--horizontal {
  display: flex;
  flex-direction: row;
  align-items: center;
  text-align: left;
  padding: 20px;
  background-color: var(--card-bg);
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-color);
}

.page-promotions__card--horizontal img {
   /* Fixed width for horizontal cards */
   /* Fixed height for horizontal cards */
  object-fit: cover;
  border-radius: 8px;
  margin-right: 20px;
  flex-shrink: 0;
  border: 1px solid var(--gold-color);
}

.page-promotions__card--horizontal .page-promotions__card-content {
  flex-grow: 1;
}

.page-promotions__card-subtitle {
  font-size: 22px;
  color: var(--gold-color);
  margin-bottom: 10px;
  font-weight: bold;
}

/* Terms and Conditions Section */
.page-promotions__terms-conditions {
  background-color: var(--section-bg);
  padding-top: 80px;
  padding-bottom: 80px;
}

.page-promotions__terms-list {
  list-style: none;
  padding: 0;
  margin: 40px auto 0;
  max-width: 900px;
  text-align: left;
}

.page-promotions__terms-list li {
  font-size: 17px;
  color: var(--light-text);
  margin-bottom: 15px;
  position: relative;
  padding-left: 30px;
}

.page-promotions__terms-list li::before {
  content: '✓';
  color: var(--gold-color);
  position: absolute;
  left: 0;
  font-weight: bold;
  font-size: 20px;
}

.page-promotions__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  background: transparent;
  color: var(--gold-color);
  text-decoration: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: bold;
  border: 2px solid var(--gold-color);
  transition: all 0.3s ease;
  margin-top: 40px;
  cursor: pointer;
  max-width: 100%; /* For mobile responsiveness */
  box-sizing: border-box; /* For mobile responsiveness */
  white-space: normal; /* For mobile responsiveness */
  word-wrap: break-word; /* For mobile responsiveness */
}

.page-promotions__btn-secondary:hover {
  background: var(--gold-color);
  color: #000000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* How to Claim Section */
.page-promotions__how-to-claim {
  background-color: var(--primary-color);
  padding-top: 80px;
  padding-bottom: 80px;
}

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

.page-promotions__step-card {
  background-color: var(--card-bg);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  border: 1px solid var(--border-color);
}

.page-promotions__step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: var(--gold-color);
  color: #000000;
  border-radius: 50%;
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions__step-title {
  font-size: 24px;
  color: var(--gold-color);
  margin-bottom: 10px;
  font-weight: bold;
}

.page-promotions__step-text {
  font-size: 16px;
  color: var(--light-text);
}

/* FAQ Section */
.page-promotions__faq-section {
  background-color: var(--section-bg);
  padding-top: 80px;
  padding-bottom: 80px;
}

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

details.page-promotions__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  background: var(--card-bg); /* Use card background for FAQ items */
}
details.page-promotions__faq-item summary.page-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
}
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: var(--deep-red); /* Darker red on hover */
}
.page-promotions__faq-qtext {
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: var(--gold-color); /* Gold text for questions */
}
.page-promotions__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  color: var(--gold-color); /* Gold color for toggle icon */
  flex-shrink: 0;
  margin-left: 15px;
  width: 30px;
  text-align: center;
}
details.page-promotions__faq-item .page-promotions__faq-answer {
  padding: 0 20px 20px;
  background: var(--deep-red); /* Darker red for answer background */
  border-radius: 0 0 8px 8px;
  color: var(--light-text);
  font-size: 16px;
}

/* Why Choose Us Section */
.page-promotions__why-choose-us {
  background-color: var(--primary-color);
  padding-top: 80px;
  padding-bottom: 80px;
}

.page-promotions__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-promotions__feature-item {
  background-color: var(--card-bg);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  border: 1px solid var(--border-color);
}

.page-promotions__feature-item img {
  width: 100%;
  
  height: auto;
  object-fit: contain;
  margin: 0 auto 20px;
  border-radius: 50%;
  background-color: var(--deep-red); /* Background for icons */
  padding: 15px;
  border: 2px solid var(--gold-color);
}

.page-promotions__feature-title {
  font-size: 22px;
  color: var(--gold-color);
  margin-bottom: 10px;
  font-weight: bold;
}

.page-promotions__feature-text {
  font-size: 16px;
  color: var(--light-text);
}

/* General Image and Button Responsiveness */
.page-promotions img {
  max-width: 100%;
  height: auto;
  display: block;
}

.page-promotions__section,
.page-promotions__card,
.page-promotions__container,
.page-promotions__offer-category,
.page-promotions__card-list,
.page-promotions__steps-grid,
.page-promotions__faq-list,
.page-promotions__features-grid,
.page-promotions__cta-buttons,
.page-promotions__button-group,
.page-promotions__btn-container {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden; /* Prevent horizontal overflow */
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .page-promotions {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-promotions__hero-section {
    padding-top: 10px !important; /* Small top padding for mobile */
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-promotions__hero-content h1 {
    font-size: 32px;
  }

  .page-promotions__hero-description {
    font-size: 17px;
  }

  .page-promotions__cta-button {
    padding: 12px 30px;
    font-size: 18px;
    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__section-title {
    font-size: 28px;
  }

  .page-promotions__section-description {
    font-size: 16px;
  }

  .page-promotions__grid {
    grid-template-columns: 1fr; /* Stack cards vertically */
  }

  .page-promotions__card {
    padding: 20px;
  }

  .page-promotions__btn-primary,
  .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;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-promotions__offer-category {
    margin-bottom: 40px;
  }

  .page-promotions__category-title {
    font-size: 26px;
  }

  .page-promotions__card-list {
    grid-template-columns: 1fr; /* Stack horizontal cards vertically */
  }

  .page-promotions__card--horizontal {
    flex-direction: column; /* Stack image and content vertically */
    text-align: center;
  }

  .page-promotions__card--horizontal img {
    margin: 0 auto 15px;
    width: 100%;
    height: auto;
    max-width: 200px; /* Adjust for better mobile display */
  }

  .page-promotions__card--horizontal .page-promotions__card-content {
    width: 100%;
  }

  .page-promotions__card-subtitle {
    font-size: 20px;
  }

  .page-promotions__terms-list {
    padding: 0 15px;
  }

  .page-promotions__terms-list li {
    font-size: 15px;
    padding-left: 25px;
  }

  .page-promotions__steps-grid {
    grid-template-columns: 1fr; /* Stack step cards vertically */
  }

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

  .page-promotions__features-grid {
    grid-template-columns: 1fr; /* Stack feature items vertically */
  }

  .page-promotions__feature-item img {
    
  }

  /* Ensure all images are responsive on mobile */
  .page-promotions img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-promotions__section,
  .page-promotions__card,
  .page-promotions__container,
  .page-promotions__offer-category,
  .page-promotions__card-list,
  .page-promotions__steps-grid,
  .page-promotions__faq-list,
  .page-promotions__features-grid,
  .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;
  }

  /* For multiple buttons in a row, ensure they wrap or stack */
  .page-promotions__button-group,
  .page-promotions__cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px; /* Space between stacked buttons */
  }
}