.page-exclusive-promo-codes {
  font-family: 'Arial', sans-serif;
  color: #FFFFFF; /* Light text on dark background */
  background-color: #0A2342; /* Main background color */
}

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

.page-exclusive-promo-codes__hero {
  background: linear-gradient(135deg, #0A2342 0%, #1A3F6C 100%);
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-exclusive-promo-codes__hero-content {
  z-index: 10;
  max-width: 800px;
  margin-bottom: 40px;
}

.page-exclusive-promo-codes__main-title {
  font-size: 3.5em;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-exclusive-promo-codes__tagline {
  font-size: 1.5em;
  color: #E0E0E0;
  margin-bottom: 40px;
}

.page-exclusive-promo-codes__cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #0A2342;
  padding: 18px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.3em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 2px solid #FFD700;
}

.page-exclusive-promo-codes__cta-button:hover {
  background-color: #E6C200;
  transform: translateY(-3px);
}

.page-exclusive-promo-codes__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.2;
  z-index: 1;
}

.page-exclusive-promo-codes__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-exclusive-promo-codes__section {
  padding: 60px 0;
  text-align: center;
}

.page-exclusive-promo-codes__section:nth-of-type(even) {
  background-color: #1A3F6C;
}

.page-exclusive-promo-codes__section-title {
  font-size: 2.5em;
  color: #FFD700;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-exclusive-promo-codes__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-exclusive-promo-codes__intro p {
  font-size: 1.1em;
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto 20px auto;
  color: #E0E0E0;
}

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

.page-exclusive-promo-codes__benefit-item {
  background-color: #0A2342;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, background-color 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-exclusive-promo-codes__benefit-item:hover {
  transform: translateY(-10px);
  background-color: #1A3F6C;
}

.page-exclusive-promo-codes__benefit-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-exclusive-promo-codes__benefit-item h3 {
  color: #FFD700;
  font-size: 1.6em;
  margin-bottom: 15px;
}

.page-exclusive-promo-codes__benefit-item p {
  color: #E0E0E0;
  font-size: 1em;
  line-height: 1.6;
}

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

.page-exclusive-promo-codes__type-card {
  background-color: #0A2342;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-exclusive-promo-codes__type-card:hover {
  transform: translateY(-10px);
}

.page-exclusive-promo-codes__type-image {
  width: 100%;
  max-width: 250px;
  height: auto;
  border-radius: 10px;
  margin-bottom: 25px;
  object-fit: cover;
}

.page-exclusive-promo-codes__type-card h3 {
  color: #FFD700;
  font-size: 1.8em;
  margin-bottom: 15px;
}

.page-exclusive-promo-codes__type-card p {
  color: #E0E0E0;
  font-size: 1em;
  line-height: 1.6;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-exclusive-promo-codes__detail-button {
  display: inline-block;
  background-color: #FFD700;
  color: #0A2342;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-exclusive-promo-codes__detail-button:hover {
  background-color: #E6C200;
  transform: translateY(-2px);
}

.page-exclusive-promo-codes__how-to-use ol {
  list-style: none;
  padding: 0;
  counter-reset: step-counter;
  margin-top: 40px;
}

.page-exclusive-promo-codes__how-to-use ol li {
  background-color: #1A3F6C;
  margin-bottom: 30px;
  padding: 30px;
  border-radius: 15px;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  padding-left: 90px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-exclusive-promo-codes__how-to-use ol li::before {
  counter-increment: step-counter;
  content: "0" counter(step-counter);
  position: absolute;
  left: 30px;
  top: 30px;
  background-color: #FFD700;
  color: #0A2342;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8em;
  font-weight: bold;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.page-exclusive-promo-codes__how-to-use ol li h3 {
  color: #FFD700;
  font-size: 1.8em;
  margin-bottom: 15px;
}

.page-exclusive-promo-codes__how-to-use ol li p {
  color: #E0E0E0;
  font-size: 1.1em;
  line-height: 1.7;
  margin-bottom: 20px;
}

.page-exclusive-promo-codes__step-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin-top: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-exclusive-promo-codes__step-button {
  display: inline-block;
  background-color: #0A2342;
  color: #FFD700;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 2px solid #FFD700;
}

.page-exclusive-promo-codes__step-button:hover {
  background-color: #FFD700;
  color: #0A2342;
  transform: translateY(-2px);
}

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

.page-exclusive-promo-codes__terms-list li {
  background-color: #0A2342;
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 10px;
  font-size: 1.1em;
  line-height: 1.7;
  border-left: 5px solid #FFD700;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-exclusive-promo-codes__terms-list li strong {
  color: #FFD700;
}

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

.page-exclusive-promo-codes__why-item {
  background-color: #0A2342;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, background-color 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-exclusive-promo-codes__why-item:hover {
  transform: translateY(-10px);
  background-color: #1A3F6C;
}

.page-exclusive-promo-codes__why-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-exclusive-promo-codes__why-item h3 {
  color: #FFD700;
  font-size: 1.6em;
  margin-bottom: 15px;
}

.page-exclusive-promo-codes__why-item p {
  color: #E0E0E0;
  font-size: 1em;
  line-height: 1.6;
}

.page-exclusive-promo-codes__cta-bottom {
  margin-top: 60px;
  padding: 40px;
  background-color: #FFD700;
  border-radius: 15px;
  color: #0A2342;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.page-exclusive-promo-codes__cta-bottom p {
  font-size: 1.4em;
  font-weight: bold;
  margin-bottom: 30px;
  color: #0A2342;
}

.page-exclusive-promo-codes__cta-button--large {
  padding: 20px 50px;
  font-size: 1.5em;
  background-color: #0A2342;
  color: #FFD700;
  border: 2px solid #0A2342;
}

.page-exclusive-promo-codes__cta-button--large:hover {
  background-color: #1A3F6C;
  color: #FFD700;
  border-color: #1A3F6C;
}

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

.page-exclusive-promo-codes__promo-card {
  background-color: #0A2342;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-exclusive-promo-codes__promo-card:hover {
  transform: translateY(-10px);
}

.page-exclusive-promo-codes__promo-image {
  width: 100%;
  max-width: 300px;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 25px;
}

.page-exclusive-promo-codes__promo-card h3 {
  color: #FFD700;
  font-size: 1.8em;
  margin-bottom: 15px;
}

.page-exclusive-promo-codes__promo-card p {
  color: #E0E0E0;
  font-size: 1em;
  line-height: 1.6;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-exclusive-promo-codes__promo-button {
  display: inline-block;
  background-color: #FFD700;
  color: #0A2342;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-exclusive-promo-codes__promo-button:hover {
  background-color: #E6C200;
  transform: translateY(-2px);
}

.page-exclusive-promo-codes__faq {
  text-align: left;
}

.page-exclusive-promo-codes__faq-item {
  background-color: #1A3F6C;
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-exclusive-promo-codes__faq-item h3 {
  color: #FFD700;
  font-size: 1.4em;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-exclusive-promo-codes__faq-item p {
  color: #E0E0E0;
  font-size: 1em;
  line-height: 1.7;
  margin-top: 15px;
}

.page-exclusive-promo-codes__final-cta {
  background-color: #FFD700;
  padding: 80px 0;
}

.page-exclusive-promo-codes__final-cta-content {
  color: #0A2342;
}

.page-exclusive-promo-codes__final-cta .page-exclusive-promo-codes__section-title {
  color: #0A2342;
}

.page-exclusive-promo-codes__final-cta .page-exclusive-promo-codes__section-title::after {
  background-color: #0A2342;
}

.page-exclusive-promo-codes__final-cta p {
  font-size: 1.3em;
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #0A2342;
}

.page-exclusive-promo-codes__cta-button--final {
  background-color: #0A2342;
  color: #FFD700;
  border: 2px solid #0A2342;
  padding: 20px 50px;
  font-size: 1.5em;
}

.page-exclusive-promo-codes__cta-button--final:hover {
  background-color: #1A3F6C;
  color: #FFD700;
  border-color: #1A3F6C;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-exclusive-promo-codes__main-title {
    font-size: 2.8em;
  }
  .page-exclusive-promo-codes__tagline {
    font-size: 1.3em;
  }
  .page-exclusive-promo-codes__section-title {
    font-size: 2em;
  }
  .page-exclusive-promo-codes__hero {
    padding: 60px 0;
  }
  .page-exclusive-promo-codes__cta-button {
    padding: 15px 30px;
    font-size: 1.1em;
  }
  .page-exclusive-promo-codes__cta-button--large,
  .page-exclusive-promo-codes__cta-button--final {
    padding: 18px 40px;
    font-size: 1.3em;
  }
}

@media (max-width: 768px) {
  .page-exclusive-promo-codes__main-title {
    font-size: 2.2em;
  }
  .page-exclusive-promo-codes__tagline {
    font-size: 1.1em;
  }
  .page-exclusive-promo-codes__section-title {
    font-size: 1.8em;
  }
  .page-exclusive-promo-codes__benefits-grid,
  .page-exclusive-promo-codes__type-cards,
  .page-exclusive-promo-codes__why-grid,
  .page-exclusive-promo-codes__promo-cards {
    grid-template-columns: 1fr;
  }
  .page-exclusive-promo-codes__how-to-use ol li {
    padding-left: 30px;
  }
  .page-exclusive-promo-codes__how-to-use ol li::before {
    left: auto;
    right: 15px;
    top: 15px;
    width: 40px;
    height: 40px;
    font-size: 1.5em;
  }
  .page-exclusive-promo-codes__cta-bottom {
    padding: 30px 20px;
  }
}

@media (max-width: 480px) {
  .page-exclusive-promo-codes__main-title {
    font-size: 1.8em;
  }
  .page-exclusive-promo-codes__tagline {
    font-size: 0.9em;
  }
  .page-exclusive-promo-codes__section-title {
    font-size: 1.5em;
  }
  .page-exclusive-promo-codes__hero {
    padding: 40px 0;
  }
  .page-exclusive-promo-codes__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-exclusive-promo-codes__cta-button--large,
  .page-exclusive-promo-codes__cta-button--final {
    padding: 15px 30px;
    font-size: 1.1em;
  }
  .page-exclusive-promo-codes__how-to-use ol li::before {
    display: none;
  }
  .page-exclusive-promo-codes__how-to-use ol li h3 {
    font-size: 1.5em;
  }
  .page-exclusive-promo-codes__step-button {
    width: 100%;
    text-align: center;
  }
}