.page-deposits-withdrawals-first-deposit-offer {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f8f8;
  text-align: left;
}

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

.page-deposits-withdrawals-first-deposit-offer__hero-section {
  background: linear-gradient(135deg, #003366, #1a4d80);
  color: #fff;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-deposits-withdrawals-first-deposit-offer__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-deposits-withdrawals-first-deposit-offer__hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  text-align: left;
  padding: 20px;
}

.page-deposits-withdrawals-first-deposit-offer__hero-image-wrapper {
  position: relative;
  z-index: 2;
  max-width: 500px;
}

.page-deposits-withdrawals-first-deposit-offer__hero-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.page-deposits-withdrawals-first-deposit-offer__main-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700;
  line-height: 1.2;
}

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

.page-deposits-withdrawals-first-deposit-offer__cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #003366;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-deposits-withdrawals-first-deposit-offer__cta-button:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-deposits-withdrawals-first-deposit-offer__cta-button--secondary {
  background-color: #003366;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-deposits-withdrawals-first-deposit-offer__cta-button--secondary:hover {
  background-color: #002244;
  border-color: #e6c200;
}

.page-deposits-withdrawals-first-deposit-offer__cta-button--primary {
  background-color: #FFD700;
  color: #003366;
}

.page-deposits-withdrawals-first-deposit-offer__cta-button--primary:hover {
  background-color: #e6c200;
}

.page-deposits-withdrawals-first-deposit-offer__cta-button--final {
  margin-top: 30px;
  font-size: 1.2em;
  padding: 18px 35px;
}

.page-deposits-withdrawals-first-deposit-offer__section {
  padding: 60px 0;
  background-color: #fff;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
}

.page-deposits-withdrawals-first-deposit-offer__section:nth-of-type(even) {
  background-color: #f0f4f7;
}

.page-deposits-withdrawals-first-deposit-offer__section-title {
  font-size: 2.5em;
  color: #003366;
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.page-deposits-withdrawals-first-deposit-offer__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-deposits-withdrawals-first-deposit-offer__section-description {
  font-size: 1.1em;
  color: #555;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-deposits-withdrawals-first-deposit-offer__details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
  text-align: center;
}

.page-deposits-withdrawals-first-deposit-offer__detail-card {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 5px solid #003366;
}

.page-deposits-withdrawals-first-deposit-offer__detail-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-deposits-withdrawals-first-deposit-offer__detail-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 5px 5px rgba(0, 51, 102, 0.2));
}

.page-deposits-withdrawals-first-deposit-offer__card-title {
  font-size: 1.6em;
  color: #003366;
  margin-bottom: 15px;
}

.page-deposits-withdrawals-first-deposit-offer__card-text {
  color: #666;
  font-size: 0.95em;
}

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

.page-deposits-withdrawals-first-deposit-offer__step-card {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  position: relative;
  border-bottom: 5px solid #FFD700;
}

.page-deposits-withdrawals-first-deposit-offer__step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: #003366;
  color: #FFD700;
  border-radius: 50%;
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 51, 102, 0.3);
}

.page-deposits-withdrawals-first-deposit-offer__image-wrapper {
  margin-top: 50px;
  text-align: center;
}

.page-deposits-withdrawals-first-deposit-offer__steps-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.page-deposits-withdrawals-first-deposit-offer__terms-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-deposits-withdrawals-first-deposit-offer__terms-list li {
  background-color: #f0f4f7;
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  border-left: 5px solid #003366;
  color: #333;
}

.page-deposits-withdrawals-first-deposit-offer__list-title {
  font-size: 1.2em;
  color: #003366;
  margin-bottom: 5px;
  display: inline;
}

.page-deposits-withdrawals-first-deposit-offer__terms-list li p {
  margin-top: 10px;
  font-size: 0.95em;
  color: #555;
}

.page-deposits-withdrawals-first-deposit-offer__additional-info {
  text-align: center;
  margin-top: 40px;
  font-size: 1.1em;
  color: #555;
}

.page-deposits-withdrawals-first-deposit-offer__why-ok9-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  text-align: center;
}

.page-deposits-withdrawals-first-deposit-offer__why-ok9-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-bottom: 5px solid #FFD700;
}

.page-deposits-withdrawals-first-deposit-offer__why-ok9-item:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-deposits-withdrawals-first-deposit-offer__why-ok9-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 3px 3px rgba(255, 215, 0, 0.3));
}

.page-deposits-withdrawals-first-deposit-offer__faq-list {
  margin-top: 40px;
}

.page-deposits-withdrawals-first-deposit-offer__faq-item {
  background-color: #fff;
  margin-bottom: 15px;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border-left: 4px solid #FFD700;
}

.page-deposits-withdrawals-first-deposit-offer__faq-question {
  font-size: 1.2em;
  color: #003366;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-deposits-withdrawals-first-deposit-offer__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.5em;
  line-height: 1;
  color: #FFD700;
  transition: transform 0.3s ease;
}

.page-deposits-withdrawals-first-deposit-offer__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-deposits-withdrawals-first-deposit-offer__faq-answer {
  font-size: 1em;
  color: #666;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
  padding-top: 0;
}

.page-deposits-withdrawals-first-deposit-offer__faq-answer.active {
  max-height: 200px; /* Adjust as needed */
  padding-top: 15px;
}

.page-deposits-withdrawals-first-deposit-offer__call-to-action {
  background: linear-gradient(to right, #003366, #1a4d80);
  color: #fff;
  text-align: center;
  padding: 80px 20px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-deposits-withdrawals-first-deposit-offer__call-to-action .page-deposits-withdrawals-first-deposit-offer__section-title {
  color: #FFD700;
}

.page-deposits-withdrawals-first-deposit-offer__call-to-action .page-deposits-withdrawals-first-deposit-offer__section-title::after {
  background-color: #FFD700;
}

.page-deposits-withdrawals-first-deposit-offer__call-to-action .page-deposits-withdrawals-first-deposit-offer__section-description {
  color: #e0e0e0;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-deposits-withdrawals-first-deposit-offer__hero-section {
    flex-direction: column;
    padding: 60px 0;
  }

  .page-deposits-withdrawals-first-deposit-offer__hero-content {
    text-align: center;
    max-width: 100%;
  }

  .page-deposits-withdrawals-first-deposit-offer__main-title {
    font-size: 2.5em;
  }

  .page-deposits-withdrawals-first-deposit-offer__subtitle {
    font-size: 1.1em;
  }

  .page-deposits-withdrawals-first-deposit-offer__hero-image-wrapper {
    margin-top: 40px;
    max-width: 80%;
  }

  .page-deposits-withdrawals-first-deposit-offer__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-deposits-withdrawals-first-deposit-offer__section {
    padding: 40px 0;
  }

  .page-deposits-withdrawals-first-deposit-offer__details-grid,
  .page-deposits-withdrawals-first-deposit-offer__steps-grid,
  .page-deposits-withdrawals-first-deposit-offer__why-ok9-grid {
    grid-template-columns: 1fr;
  }

  .page-deposits-withdrawals-first-deposit-offer__hero-content {
    padding: 15px;
  }

  .page-deposits-withdrawals-first-deposit-offer__main-title {
    font-size: 2em;
  }

  .page-deposits-withdrawals-first-deposit-offer__subtitle {
    font-size: 1em;
  }

  .page-deposits-withdrawals-first-deposit-offer__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-deposits-withdrawals-first-deposit-offer__section-description {
    font-size: 1em;
  }

  .page-deposits-withdrawals-first-deposit-offer__card-title {
    font-size: 1.4em;
  }

  .page-deposits-withdrawals-first-deposit-offer__faq-question {
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-deposits-withdrawals-first-deposit-offer__main-title {
    font-size: 1.8em;
  }

  .page-deposits-withdrawals-first-deposit-offer__section-title {
    font-size: 1.8em;
  }

  .page-deposits-withdrawals-first-deposit-offer__hero-image-wrapper {
    max-width: 90%;
  }

  .page-deposits-withdrawals-first-deposit-offer__cta-button {
    width: 100%;
    box-sizing: border-box;
  }

  .page-deposits-withdrawals-first-deposit-offer__call-to-action {
    padding: 50px 15px;
  }
}