/* style/resources-deposit-withdrawal-guide.css */
.page-resources-deposit-withdrawal-guide {
  font-family: 'Arial', sans-serif;
  color: #f0f0f0;
  background-color: #1a1a1a;
  line-height: 1.6;
}

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

.page-resources-deposit-withdrawal-guide__hero {
  background: linear-gradient(135deg, #8B0000 0%, #FFD700 100%);
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
  border-bottom: 5px solid #FFD700;
}

.page-resources-deposit-withdrawal-guide__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
}

.page-resources-deposit-withdrawal-guide__title {
  font-size: 3.2em;
  margin-bottom: 15px;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.page-resources-deposit-withdrawal-guide__subtitle {
  font-size: 1.4em;
  margin-bottom: 30px;
  opacity: 0.9;
}

.page-resources-deposit-withdrawal-guide__hero-image-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.page-resources-deposit-withdrawal-guide__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
  filter: grayscale(100%);
}

.page-resources-deposit-withdrawal-guide__cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #8B0000;
  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;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-resources-deposit-withdrawal-guide__cta-button:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-resources-deposit-withdrawal-guide__section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-resources-deposit-withdrawal-guide__section:last-of-type {
  border-bottom: none;
}

.page-resources-deposit-withdrawal-guide__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 20px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.page-resources-deposit-withdrawal-guide__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #ccc;
}

.page-resources-deposit-withdrawal-guide__sub-section-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-top: 40px;
  margin-bottom: 25px;
  border-left: 5px solid #8B0000;
  padding-left: 15px;
}

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

.page-resources-deposit-withdrawal-guide__feature-item {
  background-color: #2a2a2a;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-resources-deposit-withdrawal-guide__feature-item:hover {
  transform: translateY(-5px);
  background-color: #3a3a3a;
}

.page-resources-deposit-withdrawal-guide__feature-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-resources-deposit-withdrawal-guide__feature-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-resources-deposit-withdrawal-guide__feature-text {
  color: #bbb;
}

.page-resources-deposit-withdrawal-guide__step-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 40px auto;
  max-width: 900px;
}

.page-resources-deposit-withdrawal-guide__step-list li {
  background-color: #2a2a2a;
  margin-bottom: 15px;
  padding: 20px 25px;
  border-left: 5px solid #FFD700;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  font-size: 1.1em;
  color: #e0e0e0;
}

.page-resources-deposit-withdrawal-guide__step-highlight {
  color: #FFD700;
}

.page-resources-deposit-withdrawal-guide__step-list li a {
  color: #FFD700;
  text-decoration: none;
}

.page-resources-deposit-withdrawal-guide__step-list li a:hover {
  text-decoration: underline;
}

.page-resources-deposit-withdrawal-guide__note {
  background-color: #8B0000;
  color: #fff;
  padding: 20px;
  border-radius: 8px;
  margin: 40px auto;
  max-width: 900px;
  font-size: 1.1em;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-resources-deposit-withdrawal-guide__image-block {
  text-align: center;
  margin: 40px 0;
}

.page-resources-deposit-withdrawal-guide__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-resources-deposit-withdrawal-guide__image-caption {
  font-style: italic;
  color: #aaa;
  margin-top: 15px;
  font-size: 0.95em;
}

.page-resources-deposit-withdrawal-guide__checklist {
  list-style: none;
  padding: 0;
  margin: 0 auto 40px auto;
  max-width: 900px;
}

.page-resources-deposit-withdrawal-guide__checklist li {
  background-color: #2a2a2a;
  margin-bottom: 10px;
  padding: 15px 20px;
  border-left: 4px solid #8B0000;
  border-radius: 6px;
  color: #e0e0e0;
  font-size: 1.05em;
}

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

.page-resources-deposit-withdrawal-guide__security-item {
  background-color: #2a2a2a;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-resources-deposit-withdrawal-guide__security-item:hover {
  transform: translateY(-5px);
  background-color: #3a3a3a;
}

.page-resources-deposit-withdrawal-guide__security-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
  filter: drop-shadow(0 0 5px rgba(139, 0, 0, 0.5));
}

.page-resources-deposit-withdrawal-guide__security-title {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-resources-deposit-withdrawal-guide__security-text {
  color: #bbb;
}

.page-resources-deposit-withdrawal-guide__cta-box {
  background-color: #8B0000;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  margin-top: 50px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.page-resources-deposit-withdrawal-guide__cta-box p {
  font-size: 1.3em;
  color: #fff;
  margin-bottom: 20px;
}

.page-resources-deposit-withdrawal-guide__cta-button--small {
  padding: 12px 25px;
  font-size: 1em;
}

.page-resources-deposit-withdrawal-guide__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-resources-deposit-withdrawal-guide__faq-item {
  background-color: #2a2a2a;
  margin-bottom: 15px;
  padding: 20px 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-resources-deposit-withdrawal-guide__faq-question {
  font-size: 1.25em;
  color: #FFD700;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-resources-deposit-withdrawal-guide__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-resources-deposit-withdrawal-guide__faq-question.active::after {
  content: '-';
  transform: translateY(-50%) rotate(0deg);
}

.page-resources-deposit-withdrawal-guide__faq-answer {
  color: #bbb;
  font-size: 1.05em;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
  opacity: 0;
}

.page-resources-deposit-withdrawal-guide__faq-answer.active {
  max-height: 200px; /* Adjust as needed */
  opacity: 1;
  margin-top: 10px;
}

.page-resources-deposit-withdrawal-guide__contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.page-resources-deposit-withdrawal-guide__contact-item {
  background-color: #2a2a2a;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-resources-deposit-withdrawal-guide__contact-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-resources-deposit-withdrawal-guide__contact-title {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-resources-deposit-withdrawal-guide__contact-text {
  color: #bbb;
}

.page-resources-deposit-withdrawal-guide__app-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  text-align: left;
}

.page-resources-deposit-withdrawal-guide__app-content {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
}

.page-resources-deposit-withdrawal-guide__app-image-container {
  flex: 1;
  min-width: 300px;
  max-width: 400px;
  text-align: center;
}

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

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-resources-deposit-withdrawal-guide__title {
    font-size: 2.8em;
  }
  .page-resources-deposit-withdrawal-guide__subtitle {
    font-size: 1.2em;
  }
}

@media (max-width: 768px) {
  .page-resources-deposit-withdrawal-guide__hero {
    padding: 60px 0;
  }
  .page-resources-deposit-withdrawal-guide__title {
    font-size: 2.2em;
  }
  .page-resources-deposit-withdrawal-guide__subtitle {
    font-size: 1.1em;
  }
  .page-resources-deposit-withdrawal-guide__section-title {
    font-size: 2em;
  }
  .page-resources-deposit-withdrawal-guide__sub-section-title {
    font-size: 1.6em;
  }
  .page-resources-deposit-withdrawal-guide__features-grid,
  .page-resources-deposit-withdrawal-guide__security-features,
  .page-resources-deposit-withdrawal-guide__contact-methods {
    grid-template-columns: 1fr;
  }
  .page-resources-deposit-withdrawal-guide__app-flex {
    flex-direction: column;
    text-align: center;
  }
  .page-resources-deposit-withdrawal-guide__app-content {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .page-resources-deposit-withdrawal-guide__hero {
    padding: 40px 0;
  }
  .page-resources-deposit-withdrawal-guide__title {
    font-size: 1.8em;
  }
  .page-resources-deposit-withdrawal-guide__subtitle {
    font-size: 1em;
  }
  .page-resources-deposit-withdrawal-guide__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-resources-deposit-withdrawal-guide__section-title {
    font-size: 1.8em;
  }
  .page-resources-deposit-withdrawal-guide__sub-section-title {
    font-size: 1.4em;
  }
  .page-resources-deposit-withdrawal-guide__step-list li,
  .page-resources-deposit-withdrawal-guide__checklist li,
  .page-resources-deposit-withdrawal-guide__faq-item p,
  .page-resources-deposit-withdrawal-guide__faq-item h3 {
    font-size: 0.95em;
  }
}