/* style/resources-deposit-withdrawal-tutorial.css */
.page-resources-deposit-withdrawal-tutorial {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
}

.page-resources-deposit-withdrawal-tutorial__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-resources-deposit-withdrawal-tutorial__hero-section {
  background-color: #004AAD; /* Main brand color */
  color: #FFFFFF;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-resources-deposit-withdrawal-tutorial__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 74, 173, 0.9), rgba(255, 215, 0, 0.2)); /* Gradient with main and accent color */
  z-index: 0;
}

.page-resources-deposit-withdrawal-tutorial__hero-title {
  font-size: 3em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFD700; /* Accent color for title */
  position: relative;
  z-index: 1;
}

.page-resources-deposit-withdrawal-tutorial__hero-subtitle {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #E0E0E0;
  position: relative;
  z-index: 1;
}

.page-resources-deposit-withdrawal-tutorial__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.page-resources-deposit-withdrawal-tutorial__btn--primary {
  background-color: #FFD700; /* Accent color */
  color: #004AAD; /* Main brand color for text */
  border: 2px solid #FFD700;
}

.page-resources-deposit-withdrawal-tutorial__btn--primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  transform: translateY(-2px);
}

.page-resources-deposit-withdrawal-tutorial__btn--secondary {
  background-color: #004AAD; /* Main brand color */
  color: #FFD700; /* Accent color for text */
  border: 2px solid #FFD700;
  margin-left: 15px;
}

.page-resources-deposit-withdrawal-tutorial__btn--secondary:hover {
  background-color: #003a8a;
  border-color: #e6c200;
  transform: translateY(-2px);
}

.page-resources-deposit-withdrawal-tutorial__content-section {
  padding: 60px 0;
  background-color: #f8f8f8;
  color: #333;
}

.page-resources-deposit-withdrawal-tutorial__intro-text {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #555;
}

.page-resources-deposit-withdrawal-tutorial__section-title {
  font-size: 2.2em;
  color: #004AAD; /* Main brand color */
  margin-top: 50px;
  margin-bottom: 25px;
  text-align: left;
  border-bottom: 3px solid #FFD700;
  padding-bottom: 10px;
}

.page-resources-deposit-withdrawal-tutorial__subsection-title {
  font-size: 1.6em;
  color: #004AAD; /* Main brand color */
  margin-top: 35px;
  margin-bottom: 20px;
  text-align: left;
}

.page-resources-deposit-withdrawal-tutorial__list {
  list-style: decimal;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #444;
}

.page-resources-deposit-withdrawal-tutorial__list li {
  margin-bottom: 10px;
}

.page-resources-deposit-withdrawal-tutorial__list ul {
  list-style: disc;
  margin-left: 20px;
  margin-top: 10px;
}

.page-resources-deposit-withdrawal-tutorial__image-wrapper {
  text-align: center;
  margin: 30px 0;
}

.page-resources-deposit-withdrawal-tutorial__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-resources-deposit-withdrawal-tutorial__faq-item {
  background-color: #ffffff;
  border: 1px solid #eee;
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-resources-deposit-withdrawal-tutorial__faq-question {
  font-size: 1.3em;
  color: #004AAD;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-resources-deposit-withdrawal-tutorial__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  color: #FFD700;
  transition: transform 0.3s ease;
}

.page-resources-deposit-withdrawal-tutorial__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-resources-deposit-withdrawal-tutorial__faq-answer {
  font-size: 1em;
  color: #555;
  display: none;
  padding-top: 10px;
  border-top: 1px solid #eee;
  margin-top: 10px;
}

.page-resources-deposit-withdrawal-tutorial__faq-answer.active {
  display: block;
}

.page-resources-deposit-withdrawal-tutorial__call-to-action {
  background-color: #004AAD;
  color: #FFFFFF;
  padding: 50px;
  text-align: center;
  border-radius: 10px;
  margin-top: 60px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-resources-deposit-withdrawal-tutorial__call-to-action-title {
  font-size: 2.5em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-resources-deposit-withdrawal-tutorial__call-to-action-text {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #E0E0E0;
}

.page-resources-deposit-withdrawal-tutorial__button-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-resources-deposit-withdrawal-tutorial__hero-title {
    font-size: 2.2em;
  }

  .page-resources-deposit-withdrawal-tutorial__hero-subtitle {
    font-size: 1em;
  }

  .page-resources-deposit-withdrawal-tutorial__section-title {
    font-size: 1.8em;
    text-align: center;
  }

  .page-resources-deposit-withdrawal-tutorial__subsection-title {
    font-size: 1.4em;
    text-align: center;
  }

  .page-resources-deposit-withdrawal-tutorial__btn {
    width: 100%;
    margin: 10px 0 !important;
  }
  
  .page-resources-deposit-withdrawal-tutorial__button-group {
    flex-direction: column;
    align-items: center;
  }

  .page-resources-deposit-withdrawal-tutorial__call-to-action-title {
    font-size: 2em;
  }

  .page-resources-deposit-withdrawal-tutorial__call-to-action-text {
    font-size: 1.1em;
  }
  
  .page-resources-deposit-withdrawal-tutorial__list {
    margin-left: 15px;
  }

  .page-resources-deposit-withdrawal-tutorial__faq-item {
    padding: 15px;
  }

  .page-resources-deposit-withdrawal-tutorial__faq-question {
    font-size: 1.1em;
  }
}

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

  .page-resources-deposit-withdrawal-tutorial__hero-subtitle {
    font-size: 0.9em;
  }

  .page-resources-deposit-withdrawal-tutorial__section-title {
    font-size: 1.6em;
  }

  .page-resources-deposit-withdrawal-tutorial__subsection-title {
    font-size: 1.2em;
  }

  .page-resources-deposit-withdrawal-tutorial__call-to-action-title {
    font-size: 1.8em;
  }

  .page-resources-deposit-withdrawal-tutorial__call-to-action-text {
    font-size: 1em;
  }
}