.page-promotions-deposit-offers {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text on dark background */
  background-color: #0A192F; /* Primary dark blue background */
}

.page-promotions-deposit-offers__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-promotions-deposit-offers__section {
  padding: 60px 0;
}

.page-promotions-deposit-offers__section-title {
  font-size: 2.5em;
  color: #64FFDA; /* Secondary bright green for titles */
  text-align: center;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.page-promotions-deposit-offers__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  line-height: 1.6;
  color: #B0B0B0;
}

/* Hero Section */
.page-promotions-deposit-offers__hero {
  background: linear-gradient(135deg, #0A192F 0%, #1A374D 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-promotions-deposit-offers__hero-title {
  font-size: 3.5em;
  color: #64FFDA;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(100, 255, 218, 0.5);
}

.page-promotions-deposit-offers__hero-subtitle {
  font-size: 1.3em;
  color: #E0E0E0;
  max-width: 900px;
  margin: 0 auto 40px auto;
  line-height: 1.8;
}

.page-promotions-deposit-offers__hero-button {
  display: inline-block;
  background-color: #64FFDA;
  color: #0A192F;
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(100, 255, 218, 0.4);
}

.page-promotions-deposit-offers__hero-button:hover {
  background-color: #4CAF9D;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(100, 255, 218, 0.6);
}

.page-promotions-deposit-offers__hero-image-wrapper {
  margin-top: 50px;
  position: relative;
  z-index: 1;
}

.page-promotions-deposit-offers__hero-image {
  max-width: 80%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
}

.page-promotions-deposit-offers__hero-image:hover {
  transform: scale(1.02);
}

/* Offer Grid */
.page-promotions-deposit-offers__offer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-promotions-deposit-offers__offer-card {
  background-color: #1A2E44;
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #1E405A;
}

.page-promotions-deposit-offers__offer-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 35px rgba(100, 255, 218, 0.2);
}

.page-promotions-deposit-offers__offer-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 8px rgba(100, 255, 218, 0.5));
}

.page-promotions-deposit-offers__offer-title {
  font-size: 1.6em;
  color: #64FFDA;
  margin-bottom: 15px;
}

.page-promotions-deposit-offers__offer-text {
  font-size: 1em;
  line-height: 1.7;
  color: #B0B0B0;
  margin-bottom: 25px;
}

.page-promotions-deposit-offers__offer-button {
  display: inline-block;
  background-color: #64FFDA;
  color: #0A192F;
  padding: 10px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  transition: background-color 0.3s ease;
}

.page-promotions-deposit-offers__offer-button:hover {
  background-color: #4CAF9D;
}

/* Guide Section */
.page-promotions-deposit-offers__guide {
  background-color: #0A192F;
}

.page-promotions-deposit-offers__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.page-promotions-deposit-offers__step-card {
  background-color: #1A2E44;
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  border: 1px solid #1E405A;
  position: relative;
  padding-top: 60px; /* Space for number */
}

.page-promotions-deposit-offers__step-number {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #64FFDA;
  color: #0A192F;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2em;
  font-weight: bold;
  box-shadow: 0 0 15px rgba(100, 255, 218, 0.6);
}

.page-promotions-deposit-offers__step-title {
  font-size: 1.4em;
  color: #64FFDA;
  margin-bottom: 15px;
}

.page-promotions-deposit-offers__step-text {
  font-size: 0.95em;
  line-height: 1.7;
  color: #B0B0B0;
  margin-bottom: 20px;
}

.page-promotions-deposit-offers__step-button {
  display: inline-block;
  background-color: #3C9983; /* Darker green for secondary buttons */
  color: #FFFFFF;
  padding: 8px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9em;
  transition: background-color 0.3s ease;
}

.page-promotions-deposit-offers__step-button:hover {
  background-color: #2A7061;
}

.page-promotions-deposit-offers__guide-image-wrapper {
  text-align: center;
}

.page-promotions-deposit-offers__guide-image {
  max-width: 90%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Terms Section */
.page-promotions-deposit-offers__terms {
  background-color: #1A2E44;
}

.page-promotions-deposit-offers__terms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.page-promotions-deposit-offers__term-item {
  background-color: #0A192F;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  border: 1px solid #1E405A;
}

.page-promotions-deposit-offers__term-title {
  font-size: 1.3em;
  color: #64FFDA;
  margin-bottom: 10px;
}

.page-promotions-deposit-offers__term-text {
  font-size: 0.95em;
  line-height: 1.6;
  color: #B0B0B0;
}

.page-promotions-deposit-offers__terms-image-wrapper {
  text-align: center;
}

.page-promotions-deposit-offers__terms-image {
  max-width: 80%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Why Choose Us Section */
.page-promotions-deposit-offers__why-choose-us {
  background-color: #0A192F;
}

.page-promotions-deposit-offers__why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.page-promotions-deposit-offers__why-item {
  background-color: #1A2E44;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  border: 1px solid #1E405A;
}

.page-promotions-deposit-offers__why-title {
  font-size: 1.4em;
  color: #64FFDA;
  margin-bottom: 10px;
}

.page-promotions-deposit-offers__why-text {
  font-size: 0.95em;
  line-height: 1.6;
  color: #B0B0B0;
}

.page-promotions-deposit-offers__why-image-wrapper {
  text-align: center;
}

.page-promotions-deposit-offers__why-image {
  max-width: 80%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* FAQ Section */
.page-promotions-deposit-offers__faq {
  background-color: #1A2E44;
}

.page-promotions-deposit-offers__faq-item {
  background-color: #0A192F;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #1E405A;
}

.page-promotions-deposit-offers__faq-question {
  font-size: 1.2em;
  color: #64FFDA;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

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

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

.page-promotions-deposit-offers__faq-answer {
  font-size: 0.95em;
  color: #B0B0B0;
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.page-promotions-deposit-offers__faq-answer.active {
  max-height: 200px; /* Adjust as needed */
}

/* CTA Section */
.page-promotions-deposit-offers__cta {
  background: linear-gradient(135deg, #1A2E44 0%, #0A192F 100%);
  text-align: center;
  padding: 80px 0;
}

.page-promotions-deposit-offers__cta-title {
  font-size: 2.8em;
  color: #64FFDA;
  margin-bottom: 20px;
  text-shadow: 0 0 8px rgba(100, 255, 218, 0.4);
}

.page-promotions-deposit-offers__cta-description {
  font-size: 1.15em;
  color: #E0E0E0;
  max-width: 800px;
  margin: 0 auto 40px auto;
  line-height: 1.7;
}

.page-promotions-deposit-offers__cta-button {
  display: inline-block;
  background-color: #64FFDA;
  color: #0A192F;
  padding: 18px 45px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.3em;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(100, 255, 218, 0.5);
}

.page-promotions-deposit-offers__cta-button:hover {
  background-color: #4CAF9D;
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(100, 255, 218, 0.7);
}

.page-promotions-deposit-offers__cta-image-wrapper {
  margin-top: 50px;
}

.page-promotions-deposit-offers__cta-image {
  max-width: 70%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-promotions-deposit-offers__hero-title {
    font-size: 2.8em;
  }

  .page-promotions-deposit-offers__section-title {
    font-size: 2em;
  }

  .page-promotions-deposit-offers__offer-grid,
  .page-promotions-deposit-offers__steps-grid,
  .page-promotions-deposit-offers__terms-grid,
  .page-promotions-deposit-offers__why-grid {
    grid-template-columns: 1fr;
  }

  .page-promotions-deposit-offers__hero-image,
  .page-promotions-deposit-offers__guide-image,
  .page-promotions-deposit-offers__terms-image,
  .page-promotions-deposit-offers__why-image,
  .page-promotions-deposit-offers__cta-image {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .page-promotions-deposit-offers__hero {
    padding: 80px 0;
  }

  .page-promotions-deposit-offers__hero-title {
    font-size: 2.2em;
  }

  .page-promotions-deposit-offers__hero-subtitle {
    font-size: 1em;
  }

  .page-promotions-deposit-offers__hero-button {
    padding: 12px 30px;
    font-size: 1.1em;
  }

  .page-promotions-deposit-offers__section {
    padding: 40px 0;
  }

  .page-promotions-deposit-offers__section-title {
    font-size: 1.8em;
  }

  .page-promotions-deposit-offers__section-description {
    font-size: 0.95em;
  }

  .page-promotions-deposit-offers__offer-card,
  .page-promotions-deposit-offers__step-card,
  .page-promotions-deposit-offers__term-item,
  .page-promotions-deposit-offers__why-item,
  .page-promotions-deposit-offers__faq-item {
    padding: 20px;
  }

  .page-promotions-deposit-offers__offer-title,
  .page-promotions-deposit-offers__step-title,
  .page-promotions-deposit-offers__term-title,
  .page-promotions-deposit-offers__why-title,
  .page-promotions-deposit-offers__faq-question {
    font-size: 1.2em;
  }

  .page-promotions-deposit-offers__offer-text,
  .page-promotions-deposit-offers__step-text,
  .page-promotions-deposit-offers__term-text,
  .page-promotions-deposit-offers__why-text,
  .page-promotions-deposit-offers__faq-answer {
    font-size: 0.9em;
  }

  .page-promotions-deposit-offers__cta-title {
    font-size: 2.2em;
  }

  .page-promotions-deposit-offers__cta-description {
    font-size: 1em;
  }

  .page-promotions-deposit-offers__cta-button {
    padding: 15px 35px;
    font-size: 1.2em;
  }
}

@media (max-width: 480px) {
  .page-promotions-deposit-offers__hero-title {
    font-size: 1.8em;
  }

  .page-promotions-deposit-offers__section-title {
    font-size: 1.6em;
  }

  .page-promotions-deposit-offers__cta-title {
    font-size: 1.8em;
  }

  .page-promotions-deposit-offers__step-number {
    width: 40px;
    height: 40px;
    font-size: 1.6em;
    top: -20px;
  }
  .page-promotions-deposit-offers__step-card {
    padding-top: 50px;
  }
}