:root {
  /* Custom colors */
  --btn-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --card-bg: #11271B;
  --bg-color-main: #08160F; /* Background */
  --text-main: #F2FFF6; /* Text Main */
  --text-secondary: #A7D9B8; /* Text Secondary */
  --border-color: #2E7A4E; /* Border */
  --glow-color: #57E38D; /* Glow */
  --gold-color: #F2C14E; /* Gold */
  --divider-color: #1E3A2A; /* Divider */
  --deep-green: #0A4B2C; /* Deep Green */
}

.page-promotions {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-main); /* Ensure main text is light on dark background */
  background-color: var(--bg-color-main); /* Set specific page background */
}

/* Hero Section */
.page-promotions__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column; /* Image on top, content below */
  align-items: center;
  padding-top: 10px; /* Small top padding */
  padding-bottom: 60px;
  background-color: var(--deep-green); /* Use a dark brand color for hero background */
}

.page-promotions__hero-image-wrapper {
  width: 100%;
  max-width: 1920px; /* Max width for hero image */
  margin-bottom: 30px;
}

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

.page-promotions__hero-content {
  max-width: 900px;
  text-align: center;
  padding: 0 20px;
}

.page-promotions__main-title {
  font-size: clamp(2em, 5vw, 3.5em); /* Responsive font size */
  font-weight: 700;
  line-height: 1.2;
  color: var(--gold-color); /* Gold for main title */
  margin-bottom: 20px;
  letter-spacing: -0.03em;
  text-shadow: 0 0 10px var(--glow-color); /* Subtle glow */
}

.page-promotions__description {
  font-size: 1.1em;
  color: var(--text-secondary); /* Secondary text color */
  margin-bottom: 30px;
}

.page-promotions__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.page-promotions__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  min-width: 200px; /* Ensure buttons are not too small */
  text-align: center;
}

.page-promotions__btn-primary {
  background: var(--btn-gradient); /* Custom button gradient */
  color: #ffffff; /* White text on dark button */
  border: none;
}

.page-promotions__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3), 0 0 15px var(--glow-color);
}

.page-promotions__btn-secondary {
  background-color: transparent;
  color: var(--gold-color); /* Gold text for secondary button */
  border: 2px solid var(--gold-color);
}

.page-promotions__btn-secondary:hover {
  background-color: var(--gold-color);
  color: var(--bg-color-main); /* Dark text on gold hover */
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* General Section Styling */
.page-promotions__section {
  padding: 60px 0;
  background-color: var(--bg-color-main); /* Default dark background */
}

.page-promotions__overview-section {
  background-color: var(--bg-color-main);
}

.page-promotions__featured-section {
  background-color: var(--deep-green); /* Slightly different dark green */
}

.page-promotions__guide-section {
  background-color: var(--bg-color-main);
}

.page-promotions__benefits-section {
  background-color: var(--deep-green);
}

.page-promotions__conclusion-section {
  background-color: var(--bg-color-main);
  padding-bottom: 80px;
}

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

.page-promotions__section-title {
  font-size: 2.5em;
  font-weight: 700;
  color: var(--gold-color);
  text-align: center;
  margin-bottom: 40px;
  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-color: var(--glow-color);
  border-radius: 2px;
}

.page-promotions__subsection-title {
  font-size: 1.8em;
  font-weight: 600;
  color: var(--text-main);
  margin-top: 40px;
  margin-bottom: 20px;
}

.page-promotions__text-block {
  font-size: 1.05em;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.page-promotions__image-wrapper {
  margin: 30px auto;
  max-width: 1000px; /* Adjust max-width as per image purpose */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-promotions__image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  min-width: 200px; /* Minimum size requirement */
  min-height: 200px; /* Minimum size requirement */
}

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

.page-promotions__card {
  background-color: var(--card-bg); /* Custom card background */
  border: 1px solid var(--border-color); /* Custom border color */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: var(--text-main); /* Ensure text is visible on card background */
}

.page-promotions__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 15px var(--glow-color);
}

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

.page-promotions__card-text {
  font-size: 0.95em;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.page-promotions__card-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-promotions__card-list-item-title {
  font-size: 1.1em;
  color: var(--text-main);
  margin-top: 15px;
  margin-bottom: 5px;
  font-weight: 600;
}

.page-promotions__card-list-item-title + p {
  color: var(--text-secondary);
  font-size: 0.9em;
}

/* Guide Section Steps */
.page-promotions__steps-list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.page-promotions__step-item {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.15);
  color: var(--text-main);
}

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

.page-promotions__step-description {
  font-size: 1em;
  color: var(--text-secondary);
}

.page-promotions__cta-buttons--center {
  margin-top: 50px;
}

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

.page-promotions__benefit-card {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.15);
  color: var(--text-main);
  text-align: center;
}

.page-promotions__benefit-title {
  font-size: 1.4em;
  color: var(--gold-color);
  margin-bottom: 10px;
  font-weight: 600;
}

.page-promotions__benefit-description {
  font-size: 0.95em;
  color: var(--text-secondary);
}

/* FAQ Section */
.page-promotions__faq-list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.page-promotions__faq-item {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  color: var(--text-main);
}

.page-promotions__faq-item summary {
  list-style: none; /* Hide default marker */
  padding: 20px 25px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 1.1em;
  color: var(--text-main);
  transition: background-color 0.3s ease;
}

.page-promotions__faq-item summary:hover {
  background-color: var(--deep-green); /* Darker on hover */
}

.page-promotions__faq-item summary::-webkit-details-marker {
  display: none; /* Hide default marker for webkit */
}

.page-promotions__faq-qtext {
  flex-grow: 1;
  color: var(--text-main);
}

.page-promotions__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: var(--gold-color);
}

.page-promotions__faq-answer {
  padding: 0 25px 20px;
  font-size: 1em;
  color: var(--text-secondary);
}

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

/* Conclusion Section */
.page-promotions__conclusion-content {
  text-align: center;
  padding-top: 40px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-promotions__main-title {
    font-size: clamp(1.8em, 6vw, 3em);
  }
  .page-promotions__section-title {
    font-size: 2em;
  }
  .page-promotions__subsection-title {
    font-size: 1.5em;
  }
}

@media (max-width: 768px) {
  .page-promotions__hero-section {
    padding-bottom: 40px;
  }
  .page-promotions__main-title {
    font-size: clamp(1.5em, 7vw, 2.5em) !important; /* Ensure responsiveness */
    line-height: 1.3 !important;
  }
  .page-promotions__description {
    font-size: 1em;
  }
  .page-promotions__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px; /* Add padding to prevent overflow */
  }
  .page-promotions__cta-button {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-promotions__section {
    padding: 40px 0;
  }
  .page-promotions__container {
    padding: 0 15px;
  }
  .page-promotions__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-promotions__subsection-title {
    font-size: 1.3em;
  }
  .page-promotions__text-block,
  .page-promotions p,
  .page-promotions li {
    font-size: 15px;
  }

  /* Image responsive */
  .page-promotions img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-promotions__image-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
    margin-left: auto;
    margin-right: auto;
  }

  /* Card Grid responsive */
  .page-promotions__card-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-promotions__card {
    padding: 20px;
  }
  .page-promotions__card-title {
    font-size: 1.3em;
  }

  /* Steps List responsive */
  .page-promotions__steps-list {
    gap: 20px;
  }
  .page-promotions__step-item {
    padding: 20px;
  }
  .page-promotions__step-title {
    font-size: 1.4em;
  }

  /* Benefits Grid responsive */
  .page-promotions__benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-promotions__benefit-title {
    font-size: 1.2em;
  }

  /* FAQ responsive */
  .page-promotions__faq-item summary {
    font-size: 1em;
    padding: 15px 20px;
  }
  .page-promotions__faq-answer {
    padding: 0 20px 15px;
  }

  /* Specific padding for video section if it were used */
  .page-promotions__video-section {
    padding-top: 10px !important;
  }
}

@media (max-width: 480px) {
  .page-promotions__section-title {
    font-size: 1.5em;
  }
  .page-promotions__subsection-title {
    font-size: 1.2em;
  }
}

/* Color Contrast Fixes - Ensure text is always readable */
.page-promotions__contrast-fix {
  background: #ffffff !important;
  color: #333333 !important;
  border: 1px solid #e0e0e0 !important;
}

.page-promotions__text-contrast-fix {
  color: #333333 !important;
  text-shadow: none !important;
}