.page-promotions {
  --color-primary: #11A84E;
  --color-secondary: #22C768;
  --color-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --color-card-bg: #11271B;
  --color-background: #08160F;
  --color-text-main: #F2FFF6;
  --color-text-secondary: #A7D9B8;
  --color-border: #2E7A4E;
  --color-glow: #57E38D;
  --color-gold: #F2C14E;
  --color-divider: #1E3A2A;
  --color-deep-green: #0A4B2C;

  font-family: 'Arial', sans-serif;
  color: var(--color-text-main);
  background-color: var(--color-background);
}

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

.page-promotions__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  margin-bottom: 30px;
}

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

.page-promotions__hero-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-promotions__main-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem); /* Use clamp for H1 font size */
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text-main);
  margin-bottom: 20px;
  text-shadow: 0 0 15px rgba(87, 227, 141, 0.4);
}

.page-promotions__intro-text {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--color-text-secondary);
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions__section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  text-align: center;
  box-sizing: border-box;
}

.page-promotions__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text-main);
  margin-bottom: 20px;
  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: var(--color-divider);
  border-radius: 2px;
}

.page-promotions__section-description {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text-secondary);
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions__cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  box-sizing: border-box;
}

.page-promotions__btn-primary {
  background: var(--color-button-gradient);
  color: #ffffff; /* White text for primary button */
  box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

.page-promotions__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(42, 209, 111, 0.6);
}

.page-promotions__btn-secondary {
  background: var(--color-card-bg);
  color: var(--color-primary);
  border: 2px solid var(--color-border);
  margin-top: 20px;
}

.page-promotions__btn-secondary:hover {
  background: var(--color-primary);
  color: #ffffff;
  border-color: var(--color-primary);
}

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

.page-promotions__card {
  background-color: var(--color-card-bg);
  border-radius: 12px;
  overflow: hidden;
  text-align: left;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.page-promotions__card-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
}

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

.page-promotions__card-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-text-main);
  margin-bottom: 15px;
  line-height: 1.4;
}

.page-promotions__card-text {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-promotions__steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 40px;
  text-align: left;
}

.page-promotions__step-item {
  background-color: var(--color-card-bg);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 30px;
  position: relative;
  padding-top: 60px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions__step-icon {
  position: absolute;
  top: 20px;
  left: 30px;
  width: 40px;
  height: 40px;
  background: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  box-shadow: 0 2px 10px rgba(17, 168, 78, 0.6);
}

.page-promotions__step-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--color-text-main);
  margin-bottom: 15px;
}

.page-promotions__step-text, .page-promotions__step-list {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.page-promotions__step-list {
  list-style: none;
  padding-left: 0;
}

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

.page-promotions__step-list li::before {
  content: '•';
  color: var(--color-primary);
  position: absolute;
  left: 0;
  top: 0;
}

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

.page-promotions__list li {
  background-color: var(--color-card-bg);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 15px;
  font-size: 1rem;
  color: var(--color-text-main);
  line-height: 1.6;
  position: relative;
  padding-left: 45px;
}

.page-promotions__list li::before {
  content: '✅';
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
}

.page-promotions__important-note {
  font-size: 1rem;
  color: var(--color-gold);
  margin-top: 30px;
  font-weight: 600;
}

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

.page-promotions__tip-card {
  background-color: var(--color-card-bg);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.page-promotions__tip-image {
  width: 100%;
  height: 180px; /* Consistent height for tip images */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

.page-promotions__tip-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--color-text-main);
  margin-bottom: 10px;
}

.page-promotions__tip-text {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
  flex-grow: 1;
}

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

.page-promotions__faq-item {
  background-color: var(--color-card-bg);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-text-main);
  background-color: var(--color-deep-green);
  border-bottom: 1px solid var(--color-border);
  transition: background-color 0.3s ease;
  list-style: none;
}

.page-promotions__faq-question:hover {
  background-color: var(--color-primary);
}

.page-promotions__faq-item[open] .page-promotions__faq-question {
  background-color: var(--color-primary);
  border-bottom-color: var(--color-primary);
}

.page-promotions__faq-qtext {
  flex-grow: 1;
}

.page-promotions__faq-toggle {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  margin-left: 20px;
  line-height: 1;
}

.page-promotions__faq-item[open] .page-promotions__faq-toggle {
  transform: rotate(45deg);
}

.page-promotions__faq-answer {
  padding: 20px 25px;
  font-size: 1rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
  background-color: var(--color-card-bg);
}

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

.page-promotions__conclusion-section {
  padding-bottom: 80px;
}

.page-promotions__mt-40 {
  margin-top: 40px;
}

/* Details element specific styling */
details > summary {
  list-style: none;
}
details > summary::-webkit-details-marker {
  display: none;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-promotions__hero-section {
    padding: 40px 15px;
  }
  .page-promotions__section {
    padding: 40px 15px;
  }
  .page-promotions__card-grid,
  .page-promotions__steps-container,
  .page-promotions__tip-cards {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .page-promotions img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-promotions__hero-image-wrapper,
  .page-promotions__card,
  .page-promotions__step-item,
  .page-promotions__tip-card,
  .page-promotions__faq-item,
  .page-promotions__section,
  .page-promotions__card-grid,
  .page-promotions__steps-container,
  .page-promotions__tip-cards,
  .page-promotions__faq-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

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

  .page-promotions__hero-content {
    padding: 0 15px;
  }

  .page-promotions__main-title {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }

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

  .page-promotions__section-title {
    font-size: clamp(1.5rem, 7vw, 2.2rem);
  }

  .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;
    padding-left: 15px;
    padding-right: 15px;
    margin-top: 20px;
  }

  .page-promotions__card-grid,
  .page-promotions__steps-container,
  .page-promotions__tip-cards {
    grid-template-columns: 1fr;
    padding-left: 0;
    padding-right: 0;
  }

  .page-promotions__list {
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-promotions__faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }

  .page-promotions__faq-toggle {
    font-size: 1.5rem;
  }

  .page-promotions__faq-answer {
    padding: 15px 20px;
  }

  .page-promotions__hero-image {
    border-radius: 0;
  }

  .page-promotions__card-image {
    height: 180px; /* Adjust card image height for mobile */
  }

  .page-promotions__tip-image {
    height: 150px; /* Adjust tip image height for mobile */
  }
}