.page-promotions-first-deposit-offer {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0;
  background-color: #121212;
  line-height: 1.6;
}

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

.page-promotions-first-deposit-offer__hero {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #1A2B4C;
}

.page-promotions-first-deposit-offer__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.7;
}

.page-promotions-first-deposit-offer__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #FFFFFF;
  max-width: 800px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 10px;
}

.page-promotions-first-deposit-offer__title {
  font-size: 3.2em;
  margin-bottom: 15px;
  color: #FFD700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions-first-deposit-offer__subtitle {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #E0E0E0;
}

.page-promotions-first-deposit-offer__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  font-size: 1.1em;
}

.page-promotions-first-deposit-offer__cta-button--primary {
  background-color: #FFD700;
  color: #1A2B4C;
}

.page-promotions-first-deposit-offer__cta-button--primary:hover {
  background-color: #E6C200;
  transform: translateY(-2px);
}

.page-promotions-first-deposit-offer__cta-button--secondary {
  background-color: #1A2B4C;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-promotions-first-deposit-offer__cta-button--secondary:hover {
  background-color: #FFD700;
  color: #1A2B4C;
  transform: translateY(-2px);
}

.page-promotions-first-deposit-offer__section {
  padding: 60px 0;
  background-color: #1A2B4C;
  margin-bottom: 20px;
}

.page-promotions-first-deposit-offer__section:nth-of-type(even) {
  background-color: #0F1D33;
}

.page-promotions-first-deposit-offer__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-promotions-first-deposit-offer__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-promotions-first-deposit-offer__text-block {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px;
  color: #E0E0E0;
}

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

.page-promotions-first-deposit-offer__grid-item {
  background-color: #0F1D33;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #FFD700;
}

.page-promotions-first-deposit-offer__sub-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
  text-align: left;
}

.page-promotions-first-deposit-offer__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-promotions-first-deposit-offer__list li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
  color: #E0E0E0;
}

.page-promotions-first-deposit-offer__list li::before {
  content: '✔';
  color: #FFD700;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-promotions-first-deposit-offer__image--small {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions-first-deposit-offer__image--large {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 40px auto 0;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-promotions-first-deposit-offer__accordion-group {
  margin-top: 40px;
}

.page-promotions-first-deposit-offer__accordion-item {
  background-color: #0F1D33;
  border: 1px solid #FFD700;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-promotions-first-deposit-offer__accordion-header {
  color: #FFD700;
  padding: 20px 30px;
  margin: 0;
  font-size: 1.5em;
  cursor: pointer;
  background-color: #1A2B4C;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.page-promotions-first-deposit-offer__accordion-header:hover {
  background-color: #2D4063;
}

.page-promotions-first-deposit-offer__accordion-header::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-promotions-first-deposit-offer__accordion-item.active .page-promotions-first-deposit-offer__accordion-header::after {
  content: '-';
  transform: rotate(180deg);
}

.page-promotions-first-deposit-offer__accordion-content {
  padding: 0 30px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
  color: #E0E0E0;
}

.page-promotions-first-deposit-offer__accordion-item.active .page-promotions-first-deposit-offer__accordion-content {
  max-height: 500px; /* Adjust as needed for content length */
  padding: 20px 30px 30px;
}

.page-promotions-first-deposit-offer__accordion-content p {
  margin-bottom: 15px;
}

.page-promotions-first-deposit-offer__accordion-content p:last-child {
  margin-bottom: 0;
}

.page-promotions-first-deposit-offer__grid--reasons {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.page-promotions-first-deposit-offer__reason-item {
  background-color: #0F1D33;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  border: 1px solid #FFD700;
}

.page-promotions-first-deposit-offer__reason-item .page-promotions-first-deposit-offer__sub-title {
  text-align: center;
}

.page-promotions-first-deposit-offer__cta-section {
  background-color: #1A2B4C;
  padding: 80px 0;
  text-align: center;
}

.page-promotions-first-deposit-offer__cta-content {
  background-color: #0F1D33;
  padding: 50px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
  border: 2px solid #FFD700;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-promotions-first-deposit-offer__title {
    font-size: 2.5em;
  }
  .page-promotions-first-deposit-offer__section-title {
    font-size: 2em;
  }
  .page-promotions-first-deposit-offer__sub-title {
    font-size: 1.5em;
  }
  .page-promotions-first-deposit-offer__accordion-header {
    font-size: 1.3em;
  }
}

@media (max-width: 768px) {
  .page-promotions-first-deposit-offer__hero {
    height: 400px;
  }
  .page-promotions-first-deposit-offer__title {
    font-size: 2em;
  }
  .page-promotions-first-deposit-offer__subtitle {
    font-size: 1.1em;
  }
  .page-promotions-first-deposit-offer__section {
    padding: 40px 0;
  }
  .page-promotions-first-deposit-offer__text-block {
    font-size: 1em;
  }
  .page-promotions-first-deposit-offer__grid {
    grid-template-columns: 1fr;
  }
  .page-promotions-first-deposit-offer__cta-content {
    padding: 30px;
  }
}

@media (max-width: 480px) {
  .page-promotions-first-deposit-offer__hero {
    height: 300px;
  }
  .page-promotions-first-deposit-offer__title {
    font-size: 1.8em;
  }
  .page-promotions-first-deposit-offer__subtitle {
    font-size: 0.9em;
  }
  .page-promotions-first-deposit-offer__cta-button {
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-promotions-first-deposit-offer__section-title {
    font-size: 1.8em;
  }
  .page-promotions-first-deposit-offer__accordion-header {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-promotions-first-deposit-offer__accordion-content {
    padding: 15px 20px 20px;
  }
}