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

.page-faq-deposit-withdrawal-process__hero-section {
  background: linear-gradient(135deg, #0D47A1, #2a5fbd);
  padding: 100px 0;
  text-align: center;
  color: #FFFFFF;
}

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

.page-faq-deposit-withdrawal-process__main-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFFFFF;
}

.page-faq-deposit-withdrawal-process__subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  color: #E0E0E0;
}

.page-faq-deposit-withdrawal-process__cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #0D47A1;
  padding: 15px 30px;
  border-radius: 5px;
  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-faq-deposit-withdrawal-process__cta-button:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-faq-deposit-withdrawal-process__cta-button--small {
  padding: 10px 20px;
  font-size: 1em;
  margin-top: 20px;
}

.page-faq-deposit-withdrawal-process__content-section {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.page-faq-deposit-withdrawal-process__section-title {
  font-size: 2.5em;
  color: #0D47A1;
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}

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

.page-faq-deposit-withdrawal-process__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #444;
  text-align: justify;
}

.page-faq-deposit-withdrawal-process__highlight {
  color: #0D47A1;
  font-weight: bold;
}

.page-faq-deposit-withdrawal-process__image-wrapper {
  text-align: center;
  margin: 40px 0;
}

.page-faq-deposit-withdrawal-process__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-faq-deposit-withdrawal-process__image-caption {
  margin-top: 15px;
  font-style: italic;
  color: #666;
  font-size: 0.95em;
}

.page-faq-deposit-withdrawal-process__method-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 50px 0;
}

.page-faq-deposit-withdrawal-process__method-card {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 5px solid #0D47A1;
}

.page-faq-deposit-withdrawal-process__method-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.page-faq-deposit-withdrawal-process__method-title {
  font-size: 1.8em;
  color: #0D47A1;
  margin-bottom: 15px;
}

.page-faq-deposit-withdrawal-process__method-description {
  color: #555;
  margin-bottom: 20px;
}

.page-faq-deposit-withdrawal-process__method-details {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-faq-deposit-withdrawal-process__method-details li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
  color: #666;
}

.page-faq-deposit-withdrawal-process__method-details li::before {
  content: '✔';
  color: #FFD700;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

.page-faq-deposit-withdrawal-process__method-icon {
  position: absolute;
  bottom: -20px;
  right: -20px;
  opacity: 0.1;
  width: 100px;
  height: 100px;
  object-fit: contain;
}

.page-faq-deposit-withdrawal-process__note {
  font-style: italic;
  color: #777;
  text-align: center;
  margin-top: 30px;
  padding: 15px;
  background-color: #eef4fc;
  border-left: 5px solid #0D47A1;
  border-radius: 5px;
}

.page-faq-deposit-withdrawal-process__bullet-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.page-faq-deposit-withdrawal-process__bullet-list li {
  position: relative;
  padding-left: 35px;
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #444;
}

.page-faq-deposit-withdrawal-process__bullet-list li::before {
  content: '✦'; /* Unicode star or diamond */
  color: #FFD700;
  font-size: 1.5em;
  position: absolute;
  left: 0;
  top: -2px;
  font-weight: bold;
}

.page-faq-deposit-withdrawal-process__inline-link {
  color: #0D47A1;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-faq-deposit-withdrawal-process__inline-link:hover {
  color: #FFD700;
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-faq-deposit-withdrawal-process__main-title {
    font-size: 2.5em;
  }

  .page-faq-deposit-withdrawal-process__subtitle {
    font-size: 1.2em;
  }

  .page-faq-deposit-withdrawal-process__section-title {
    font-size: 2em;
  }

  .page-faq-deposit-withdrawal-process__method-grid {
    grid-template-columns: 1fr;
  }

  .page-faq-deposit-withdrawal-process__method-card {
    padding: 25px;
  }

  .page-faq-deposit-withdrawal-process__bullet-list li {
    padding-left: 30px;
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-faq-deposit-withdrawal-process__hero-section {
    padding: 60px 0;
  }

  .page-faq-deposit-withdrawal-process__main-title {
    font-size: 2em;
  }

  .page-faq-deposit-withdrawal-process__subtitle {
    font-size: 1em;
  }

  .page-faq-deposit-withdrawal-process__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-faq-deposit-withdrawal-process__section-title {
    font-size: 1.8em;
  }

  .page-faq-deposit-withdrawal-process__text-block {
    font-size: 1em;
  }
}