/* style/promotions-deposit-offers.css */
.page-promotions-deposit-offers {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f8f8;
}

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

.page-promotions-deposit-offers__hero-section {
  background: linear-gradient(135deg, #0A6847, #FFD700);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-promotions-deposit-offers__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.page-promotions-deposit-offers__hero-section .page-promotions-deposit-offers__container {
  position: relative;
  z-index: 2;
}

.page-promotions-deposit-offers__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions-deposit-offers__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions-deposit-offers__hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin-top: 30px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.page-promotions-deposit-offers__section-title {
  font-size: 2.5em;
  color: #0A6847;
  text-align: center;
  margin-top: 60px;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-promotions-deposit-offers__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #555;
}

.page-promotions-deposit-offers__why-choose-us,
.page-promotions-deposit-offers__offers-list,
.page-promotions-deposit-offers__terms-conditions,
.page-promotions-deposit-offers__how-to-claim,
.page-promotions-deposit-offers__optimization-tips,
.page-promotions-deposit-offers__faq-section,
.page-promotions-deposit-offers__conclusion {
  padding: 60px 0;
}

.page-promotions-deposit-offers__why-choose-us {
  background-color: #fff;
}

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

.page-promotions-deposit-offers__feature-item {
  background-color: #f0fdf9; /* Lighter shade of main color */
  border: 1px solid #d4f2e6; /* Even lighter border */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions-deposit-offers__feature-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.page-promotions-deposit-offers__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.page-promotions-deposit-offers__feature-title {
  font-size: 1.5em;
  color: #0A6847;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promotions-deposit-offers__feature-text {
  color: #555;
}

.page-promotions-deposit-offers__offers-list {
  background-color: #f0fdf9;
}

.page-promotions-deposit-offers__offer-card {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border-radius: 12px;
  margin-bottom: 40px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions-deposit-offers__offer-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-promotions-deposit-offers__offer-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.page-promotions-deposit-offers__offer-content {
  padding: 30px;
}

.page-promotions-deposit-offers__offer-title {
  font-size: 2em;
  color: #0A6847;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promotions-deposit-offers__offer-description {
  margin-bottom: 20px;
  color: #444;
}

.page-promotions-deposit-offers__offer-details {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #555;
}

.page-promotions-deposit-offers__offer-details li {
  margin-bottom: 8px;
}

.page-promotions-deposit-offers__offer-details li strong {
  color: #0A6847;
}

.page-promotions-deposit-offers__example,
.page-promotions-deposit-offers__tip,
.page-promotions-deposit-offers__note,
.page-promotions-deposit-offers__action,
.page-promotions-deposit-offers__reminder {
  background-color: #fffbe6; /* Light yellow from accent color */
  border-left: 5px solid #FFD700;
  padding: 15px 20px;
  margin-top: 25px;
  margin-bottom: 25px;
  border-radius: 5px;
  color: #666;
}

.page-promotions-deposit-offers__terms-conditions {
  background-color: #fff;
}

.page-promotions-deposit-offers__terms-content {
  max-width: 900px;
  margin: 0 auto;
  background-color: #fdfdfd;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.page-promotions-deposit-offers__terms-subtitle {
  font-size: 1.8em;
  color: #0A6847;
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promotions-deposit-offers__terms-content p {
  margin-bottom: 20px;
  color: #444;
}

.page-promotions-deposit-offers__how-to-claim {
  background-color: #f0fdf9;
}

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

.page-promotions-deposit-offers__step-item {
  background-color: #fff;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions-deposit-offers__step-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.page-promotions-deposit-offers__step-number {
  width: 60px;
  height: 60px;
  background-color: #0A6847;
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2em;
  font-weight: bold;
  margin: 0 auto 20px auto;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-promotions-deposit-offers__step-title {
  font-size: 1.6em;
  color: #0A6847;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promotions-deposit-offers__step-text {
  color: #555;
}

.page-promotions-deposit-offers__step-text a {
  color: #0A6847;
  text-decoration: none;
  font-weight: bold;
}

.page-promotions-deposit-offers__step-text a:hover {
  text-decoration: underline;
}

.page-promotions-deposit-offers__optimization-tips {
  background-color: #fff;
}

.page-promotions-deposit-offers__tips-list {
  list-style-type: none;
  padding: 0;
  max-width: 900px;
  margin: 40px auto;
}

.page-promotions-deposit-offers__tips-list li {
  background-color: #f0fdf9;
  border-left: 5px solid #0A6847;
  padding: 20px 25px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  font-size: 1.1em;
  color: #333;
}

.page-promotions-deposit-offers__tips-list li strong {
  color: #0A6847;
}

.page-promotions-deposit-offers__optimization-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin-top: 40px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions-deposit-offers__faq-section {
  background-color: #f0fdf9;
}

.page-promotions-deposit-offers__faq-item {
  background-color: #fff;
  border-radius: 10px;
  padding: 25px 30px;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s ease;
}

.page-promotions-deposit-offers__faq-item:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.page-promotions-deposit-offers__faq-question {
  font-size: 1.4em;
  color: #0A6847;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
  font-weight: bold;
}

.page-promotions-deposit-offers__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2em;
  color: #FFD700;
}

.page-promotions-deposit-offers__faq-question.active::after {
  content: '-';
}

.page-promotions-deposit-offers__faq-answer {
  color: #555;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

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

.page-promotions-deposit-offers__conclusion {
  background-color: #0A6847;
  color: #fff;
  text-align: center;
  padding: 80px 0;
}

.page-promotions-deposit-offers__conclusion .page-promotions-deposit-offers__section-title {
  color: #FFD700;
}

.page-promotions-deposit-offers__conclusion .page-promotions-deposit-offers__section-description {
  color: #e0e0e0;
  margin-bottom: 40px;
}

.page-promotions-deposit-offers__conclusion .page-promotions-deposit-offers__section-description a {
  color: #FFD700;
  font-weight: bold;
  text-decoration: none;
}

.page-promotions-deposit-offers__conclusion .page-promotions-deposit-offers__section-description a:hover {
  text-decoration: underline;
}

.page-promotions-deposit-offers__cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #0A6847;
  padding: 15px 35px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  margin-top: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions-deposit-offers__cta-button:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-promotions-deposit-offers__cta-button--small {
  padding: 10px 25px;
  font-size: 1em;
}

.page-promotions-deposit-offers__cta-button--large {
  padding: 18px 45px;
  font-size: 1.4em;
}

/* 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-card {
    flex-direction: column;
  }

  .page-promotions-deposit-offers__offer-image {
    height: 250px;
  }

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

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

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

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

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

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

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

  .page-promotions-deposit-offers__offer-image {
    height: 200px;
  }

  .page-promotions-deposit-offers__offer-content,
  .page-promotions-deposit-offers__terms-content,
  .page-promotions-deposit-offers__feature-item,
  .page-promotions-deposit-offers__step-item,
  .page-promotions-deposit-offers__faq-item {
    padding: 25px;
  }

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

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

  .page-promotions-deposit-offers__terms-subtitle {
    font-size: 1.5em;
  }

  .page-promotions-deposit-offers__faq-question {
    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.5em;
  }

  .page-promotions-deposit-offers__hero-section,
  .page-promotions-deposit-offers__why-choose-us,
  .page-promotions-deposit-offers__offers-list,
  .page-promotions-deposit-offers__terms-conditions,
  .page-promotions-deposit-offers__how-to-claim,
  .page-promotions-deposit-offers__optimization-tips,
  .page-promotions-deposit-offers__faq-section,
  .page-promotions-deposit-offers__conclusion {
    padding: 40px 0;
  }

  .page-promotions-deposit-offers__offer-title {
    font-size: 1.5em;
  }

  .page-promotions-deposit-offers__cta-button {
    font-size: 1em;
    padding: 10px 20px;
  }

  .page-promotions-deposit-offers__cta-button--large {
    font-size: 1.1em;
    padding: 12px 25px;
  }
}