.page-promotions {
  color: var(--text-main);
  background-color: var(--background);
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-promotions__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 10px 20px 40px;
  background-color: var(--background);
}

.page-promotions__hero-image-wrapper {
  width: 100%;
  max-width: 1200px;
  margin-bottom: 30px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border);
}

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

.page-promotions__hero-content {
  max-width: 900px;
  margin-bottom: 40px;
}

.page-promotions__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--primary-color, #F2C14E);
  margin-bottom: 20px;
  text-shadow: 0 0 8px var(--glow);
}

.page-promotions__hero-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: var(--text-main);
}

.page-promotions__hero-ctas {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-promotions__cta-button {
  padding: 15px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  text-align: center;
  min-width: 180px;
}

.page-promotions__cta-button--primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111;
  border: none;
}

.page-promotions__cta-button--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.5), 0 0 15px var(--glow);
}

.page-promotions__cta-button--secondary {
  background-color: var(--card-bg);
  color: var(--text-main);
  border: 2px solid var(--primary-color, #F2C14E);
}

.page-promotions__cta-button--secondary:hover {
  background-color: var(--primary-color, #F2C14E);
  color: #111111;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.5);
}

.page-promotions__offers-section,
.page-promotions__how-to-claim-section,
.page-promotions__info-section,
.page-promotions__faq-section {
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-promotions__section-title {
  font-size: 2.2em;
  color: var(--secondary-color, #FFD36B);
  text-align: center;
  margin-bottom: 40px;
  text-shadow: 0 0 5px rgba(255, 211, 107, 0.5);
}

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

.page-promotions__offer-card {
  background-color: var(--card-bg);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions__offer-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5), 0 0 10px var(--secondary-color, #FFD36B);
}

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

.page-promotions__card-content {
  padding: 25px;
}

.page-promotions__card-title {
  font-size: 1.5em;
  margin-bottom: 15px;
}

.page-promotions__card-title a {
  color: var(--primary-color, #F2C14E);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-promotions__card-title a:hover {
  color: var(--secondary-color, #FFD36B);
}

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

.page-promotions__card-button {
  display: inline-block;
  padding: 10px 20px;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions__card-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4), 0 0 8px var(--glow);
}

.page-promotions__steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  text-align: center;
}

.page-promotions__step-card {
  background-color: var(--card-bg);
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-promotions__step-icon {
  background-color: var(--primary-color, #F2C14E);
  color: #111111;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.page-promotions__step-title {
  font-size: 1.4em;
  color: var(--secondary-color, #FFD36B);
  margin-bottom: 15px;
}

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

.page-promotions__step-button {
  display: inline-block;
  padding: 10px 20px;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions__step-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4), 0 0 8px var(--glow);
}

.page-promotions__info-content {
  background-color: var(--card-bg);
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border);
}

.page-promotions__info-text {
  font-size: 1em;
  color: var(--text-main);
  margin-bottom: 20px;
}

.page-promotions__info-links {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.page-promotions__info-links li a {
  color: var(--primary-color, #F2C14E);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-promotions__info-links li a:hover {
  color: var(--secondary-color, #FFD36B);
  text-decoration: underline;
}

.page-promotions__faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}

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

.page-promotions__accordion-header {
  width: 100%;
  background-color: #1a1a1a;
  color: var(--secondary-color, #FFD36B);
  padding: 18px 25px;
  text-align: left;
  border: none;
  font-size: 1.1em;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.page-promotions__accordion-header:hover {
  background-color: #222222;
}

.page-promotions__accordion-icon {
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-promotions__accordion-header.active .page-promotions__accordion-icon {
  transform: rotate(45deg);
}

.page-promotions__accordion-content {
  padding: 0 25px;
  background-color: var(--card-bg);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-promotions__accordion-content p {
  padding: 15px 0;
  color: var(--text-main);
  font-size: 0.95em;
}

.page-promotions__accordion-header.active + .page-promotions__accordion-content {
  max-height: 200px; /* Adjust as needed */
  padding: 15px 25px;
}

@media (max-width: 768px) {
  .page-promotions__hero-section {
    padding: 10px 15px 30px;
  }

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

  .page-promotions__hero-description {
    font-size: 1em;
  }

  .page-promotions__cta-button {
    width: 100%;
    max-width: 250px;
  }

  .page-promotions__offers-section,
  .page-promotions__how-to-claim-section,
  .page-promotions__info-section,
  .page-promotions__faq-section {
    padding: 30px 15px;
  }

  .page-promotions__section-title {
    font-size: 1.8em;
  }

  .page-promotions__offers-grid {
    grid-template-columns: 1fr;
  }

  .page-promotions__card-image {
    height: 180px;
  }

  .page-promotions__card-title {
    font-size: 1.3em;
  }

  .page-promotions__steps-container {
    grid-template-columns: 1fr;
  }

  .page-promotions__info-links {
    flex-direction: column;
    align-items: center;
  }

  .page-promotions__accordion-header {
    font-size: 1em;
    padding: 15px 20px;
  }

  .page-promotions__accordion-content p {
    font-size: 0.9em;
  }

  .page-promotions__hero-section img,
  .page-promotions__offers-grid img,
  .page-promotions__how-to-claim-section img,
  .page-promotions__info-section img,
  .page-promotions__faq-section img {
    max-width: 100% !important;
    height: auto !important;
    min-width: 200px;
    min-height: 200px;
  }
}