/* style/index-current-promotions.css */
.page-index-current-promotions {
  font-family: 'Arial', sans-serif;
  color: #F0F0F0; /* Light grey for general text on dark background */
  background-color: #0A192F; /* Primary dark blue background */
  line-height: 1.6;
}

.page-index-current-promotions__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-index-current-promotions__section {
  padding: 60px 0;
}

.page-index-current-promotions__section:nth-of-type(even) {
  background-color: #1a2a44; /* Slightly lighter dark blue for alternating sections */
}

.page-index-current-promotions h1,
.page-index-current-promotions h2 {
  color: #FFD700; /* Gold for main headings */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-index-current-promotions h1 {
  font-size: 2.8em;
  line-height: 1.2;
}

.page-index-current-promotions h2 {
  font-size: 2.2em;
}

.page-index-current-promotions h3 {
  color: #FFD700; /* Gold for subheadings */
  font-size: 1.6em;
  margin-bottom: 15px;
}

.page-index-current-promotions h4 {
  color: #F0F0F0; /* Light grey for smaller headings */
  font-size: 1.3em;
  margin-bottom: 10px;
}

.page-index-current-promotions p {
  margin-bottom: 20px;
  color: #F0F0F0;
}

.page-index-current-promotions a {
  color: #FFD700;
  text-decoration: none;
}

.page-index-current-promotions a:hover {
  text-decoration: underline;
  color: #ffe047; /* Lighter gold on hover */
}

.page-index-current-promotions__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
  cursor: pointer;
  border: none;
}

.page-index-current-promotions__button--primary {
  background-color: #FFD700; /* Gold button */
  color: #0A192F; /* Dark blue text on gold */
}

.page-index-current-promotions__button--primary:hover {
  background-color: #ffe047; /* Lighter gold on hover */
  color: #000000;
}

.page-index-current-promotions__button--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-index-current-promotions__button--secondary:hover {
  background-color: #FFD700;
  color: #0A192F;
}

.page-index-current-promotions__button--small {
  padding: 8px 18px;
  font-size: 0.9em;
  margin-right: 10px;
  margin-bottom: 10px;
}

.page-index-current-promotions__button--large {
  padding: 18px 40px;
  font-size: 1.2em;
}

/* Hero Section */
.page-index-current-promotions__hero {
  background: linear-gradient(135deg, #0A192F 0%, #1a2a44 100%); /* Gradient dark blue */
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-index-current-promotions__hero p {
  max-width: 800px;
  margin: 20px auto 40px auto;
  font-size: 1.1em;
}

.page-index-current-promotions__hero .page-index-current-promotions__button {
  margin: 0 10px;
}

/* Why Choose Section */
.page-index-current-promotions__section--why-choose {
  background-color: #0A192F;
}

.page-index-current-promotions__features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  text-align: center;
}

.page-index-current-promotions__feature-item {
  background-color: #1a2a44;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Offer Types Section */
.page-index-current-promotions__section--offer-types {
  background-color: #1a2a44;
}

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

.page-index-current-promotions__offer-card {
  background-color: #0A192F;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-index-current-promotions__offer-card h3 {
  margin-top: 20px;
  margin-bottom: 15px;
}

.page-index-current-promotions__offer-image {
  max-width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 5px;
  margin-bottom: 15px;
}

/* Guide Section */
.page-index-current-promotions__steps {
  list-style: none;
  padding: 0;
  counter-reset: step-counter;
}

.page-index-current-promotions__steps li {
  background-color: #1a2a44;
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 8px;
  position: relative;
  padding-left: 70px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.page-index-current-promotions__steps li::before {
  content: counter(step-counter);
  counter-increment: step-counter;
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #FFD700;
  color: #0A192F;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  font-weight: bold;
}

.page-index-current-promotions__steps h4 {
  margin-top: 0;
  margin-bottom: 10px;
}

.page-index-current-promotions__steps p {
  margin-bottom: 10px;
}

/* Terms Section */
.page-index-current-promotions__list {
  list-style: disc;
  margin-left: 20px;
  color: #F0F0F0;
}

.page-index-current-promotions__list li {
  margin-bottom: 10px;
}

.page-index-current-promotions__list li strong {
  color: #FFD700;
}

/* App Download Section */
.page-index-current-promotions__section--app-download {
  background-color: #0A192F;
  text-align: center;
}

.page-index-current-promotions__app-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.page-index-current-promotions__app-text {
  max-width: 700px;
}

.page-index-current-promotions__app-text h2 {
  margin-bottom: 20px;
}

.page-index-current-promotions__app-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 400px; /* Adjust as needed */
}

.page-index-current-promotions__app-image {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* FAQ Section */
.page-index-current-promotions__faq-items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.page-index-current-promotions__faq-item {
  background-color: #1a2a44;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.page-index-current-promotions__faq-item h4 {
  color: #FFD700;
  margin-bottom: 10px;
}

/* CTA Section */
.page-index-current-promotions__cta {
  background: linear-gradient(90deg, #0A192F 0%, #FFD700 100%); /* Gradient from dark blue to gold */
  padding: 80px 0;
  text-align: center;
  color: #0A192F; /* Dark text on gradient background */
}

.page-index-current-promotions__cta h2 {
  color: #0A192F; /* Dark blue for heading on light background */
  margin-bottom: 20px;
}

.page-index-current-promotions__cta p {
  color: #0A192F; /* Dark blue for paragraph on light background */
  max-width: 800px;
  margin: 0 auto 40px auto;
  font-size: 1.1em;
}

.page-index-current-promotions__cta .page-index-current-promotions__button--primary {
  background-color: #0A192F;
  color: #FFD700;
}

.page-index-current-promotions__cta .page-index-current-promotions__button--primary:hover {
  background-color: #000000;
  color: #FFD700;
}

/* Responsive Design */
@media (min-width: 768px) {
  .page-index-current-promotions__app-content {
    flex-direction: row;
    text-align: left;
    justify-content: center;
  }

  .page-index-current-promotions__app-text {
    text-align: left;
  }

  .page-index-current-promotions__app-image-wrapper {
    order: 2;
  }

  .page-index-current-promotions__app-text,
  .page-index-current-promotions__app-image-wrapper {
    flex: 1;
  }

  .page-index-current-promotions__hero h1 {
    font-size: 3.5em;
  }

  .page-index-current-promotions h2 {
    font-size: 2.5em;
  }

  .page-index-current-promotions__offer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .page-index-current-promotions__offer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .page-index-current-promotions__faq-items {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .page-index-current-promotions__hero {
    padding: 60px 0;
  }
  .page-index-current-promotions h1 {
    font-size: 2em;
  }
  .page-index-current-promotions h2 {
    font-size: 1.8em;
  }
  .page-index-current-promotions h3 {
    font-size: 1.4em;
  }
  .page-index-current-promotions__hero .page-index-current-promotions__button {
    display: block;
    margin: 15px auto;
    width: 80%;
    max-width: 300px;
  }
  .page-index-current-promotions__app-image-wrapper {
    margin-top: 30px;
  }
}