/* style/promotions.css */
.page-promotions {
  font-family: 'Arial', sans-serif;
  color: #F7FAFC; /* Light text for dark backgrounds */
  background-color: #1A202C; /* Main dark background */
  line-height: 1.6;
}

.page-promotions .highlight {
  color: #E53E3E; /* Accent color for highlights */
}

.page-promotions__hero {
  background: linear-gradient(135deg, #1A202C 0%, #3a0d0d 100%); /* Dark gradient for hero */
  padding: 100px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  position: relative;
  overflow: hidden;
}

.page-promotions__hero-content {
  max-width: 900px;
  z-index: 1;
}

.page-promotions__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.2;
  overflow: hidden;
}

.page-promotions__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(5px);
  transform: scale(1.05);
}

.page-promotions__title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #F7FAFC;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions__subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  color: #CBD5E0; /* Slightly lighter text */
}

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

.page-promotions__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  font-size: 1.1em;
  text-align: center;
}

.page-promotions__btn--primary {
  background-color: #E53E3E;
  color: #F7FAFC;
  border: 2px solid #E53E3E;
}

.page-promotions__btn--primary:hover {
  background-color: #C53030;
  transform: translateY(-3px);
}

.page-promotions__btn--secondary {
  background-color: transparent;
  color: #F7FAFC;
  border: 2px solid #F7FAFC;
}

.page-promotions__btn--secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

.page-promotions__section {
  padding: 80px 20px;
  text-align: center;
}

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

.page-promotions__section-title {
  font-size: 2.8em;
  margin-bottom: 25px;
  color: #F7FAFC;
}

.page-promotions__section-description {
  font-size: 1.1em;
  max-width: 800px;
  margin: 0 auto 50px auto;
  color: #CBD5E0;
}

.page-promotions__section--why-123b {
  background-color: #1A202C;
}

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

.page-promotions__feature-item {
  background-color: #2D3748; /* Slightly lighter dark background */
  padding: 30px;
  border-radius: 10px;
  text-align: left;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions__feature-title {
  font-size: 1.8em;
  color: #E53E3E;
  margin-bottom: 15px;
}

.page-promotions__feature-item p {
  color: #CBD5E0;
}

.page-promotions__section--current-offers {
  background-color: #2D3748; /* Another dark background */
}

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

.page-promotions__offer-card {
  background-color: #1A202C;
  border-radius: 12px;
  overflow: hidden;
  text-align: left;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.page-promotions__offer-card:hover {
  transform: translateY(-10px);
}

.page-promotions__offer-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

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

.page-promotions__offer-title {
  font-size: 1.7em;
  color: #F7FAFC;
  margin-bottom: 15px;
}

.page-promotions__offer-text {
  color: #CBD5E0;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-promotions__btn--small {
  padding: 10px 20px;
  font-size: 0.95em;
  margin-right: 10px;
  margin-bottom: 10px;
}

.page-promotions__btn--claim {
  background-color: #E53E3E;
  color: #F7FAFC;
  border: 2px solid #E53E3E;
}

.page-promotions__btn--claim:hover {
  background-color: #C53030;
}

.page-promotions__section--more-info {
  background-color: #1A202C;
}

.page-promotions__steps-list {
  list-style: none;
  padding: 0;
  margin: 50px auto;
  max-width: 800px;
  text-align: left;
}

.page-promotions__steps-list li {
  background-color: #2D3748;
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  color: #F7FAFC;
  font-size: 1.1em;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions__steps-list li strong {
  color: #E53E3E;
}

.page-promotions__conclusion-text {
  font-size: 1.1em;
  max-width: 900px;
  margin: 40px auto;
  color: #CBD5E0;
}

.page-promotions__final-cta {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-promotions__section--faq {
  background-color: #2D3748;
}

.page-promotions__faq-item {
  background-color: #1A202C;
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 10px;
  text-align: left;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions__faq-question {
  font-size: 1.4em;
  color: #E53E3E;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-promotions__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  transition: transform 0.3s ease;
}

.page-promotions__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-promotions__faq-answer {
  color: #CBD5E0;
  font-size: 1.05em;
  display: none;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.page-promotions__faq-answer.active {
  display: block;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-promotions__title {
    font-size: 3em;
  }
  .page-promotions__subtitle {
    font-size: 1.3em;
  }
  .page-promotions__section-title {
    font-size: 2.5em;
  }
  .page-promotions__offer-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-promotions__hero {
    padding: 80px 15px;
  }
  .page-promotions__title {
    font-size: 2.5em;
  }
  .page-promotions__subtitle {
    font-size: 1.1em;
  }
  .page-promotions__cta-buttons {
    flex-direction: column;
  }
  .page-promotions__btn {
    width: 100%;
  }
  .page-promotions__section {
    padding: 60px 15px;
  }
  .page-promotions__section-title {
    font-size: 2em;
  }
  .page-promotions__offer-grid {
    grid-template-columns: 1fr;
  }
  .page-promotions__faq-question {
    font-size: 1.2em;
  }
}

@media (max-width: 480px) {
  .page-promotions__hero {
    padding: 60px 10px;
  }
  .page-promotions__title {
    font-size: 2em;
  }
  .page-promotions__subtitle {
    font-size: 1em;
  }
  .page-promotions__btn {
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-promotions__section {
    padding: 40px 10px;
  }
  .page-promotions__section-title {
    font-size: 1.8em;
  }
  .page-promotions__feature-title {
    font-size: 1.5em;
  }
  .page-promotions__offer-title {
    font-size: 1.4em;
  }
  .page-promotions__btn--small {
    width: auto;
    margin-right: 5px;
    margin-bottom: 5px;
  }
  .page-promotions__final-cta {
    flex-direction: column;
  }
  .page-promotions__faq-question {
    font-size: 1.1em;
  }
  .page-promotions__faq-answer {
    font-size: 0.95em;
  }
}