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

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

.page-deposit-withdrawal-deposit-guide__hero {
  background: linear-gradient(135deg, #007BFF 0%, #0056b3 100%); /* Darker blue for better contrast */
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-deposit-withdrawal-deposit-guide__title {
  font-size: 2.8em;
  margin-bottom: 15px;
  font-weight: bold;
  color: #FFD700; /* Golden yellow for highlight */
}

.page-deposit-withdrawal-deposit-guide__subtitle {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #e0e0e0;
}

.page-deposit-withdrawal-deposit-guide__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  margin: 0 10px;
  border: 2px solid transparent;
}

.page-deposit-withdrawal-deposit-guide__button--primary {
  background-color: #FFD700;
  color: #0056b3; /* Darker blue for text on golden background */
  border-color: #FFD700;
}

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

.page-deposit-withdrawal-deposit-guide__button--secondary {
  background-color: transparent;
  color: #FFD700;
  border-color: #FFD700;
}

.page-deposit-withdrawal-deposit-guide__button--secondary:hover {
  background-color: #FFD700;
  color: #0056b3;
  transform: translateY(-3px);
}

.page-deposit-withdrawal-deposit-guide__section {
  padding: 60px 0;
  background-color: #ffffff;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-deposit-withdrawal-deposit-guide__section:nth-of-type(odd) {
  background-color: #fefefe;
}

.page-deposit-withdrawal-deposit-guide__section-title {
  font-size: 2.2em;
  color: #007BFF;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 10px;
}

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

.page-deposit-withdrawal-deposit-guide__description {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  color: #555555;
}

.page-deposit-withdrawal-deposit-guide__features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  text-align: center;
}

.page-deposit-withdrawal-deposit-guide__feature-item {
  background-color: #f0f8ff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.page-deposit-withdrawal-deposit-guide__feature-item:hover {
  transform: translateY(-5px);
}

.page-deposit-withdrawal-deposit-guide__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
  filter: drop-shadow(0 2px 5px rgba(0, 123, 255, 0.3));
}

.page-deposit-withdrawal-deposit-guide__feature-title {
  font-size: 1.4em;
  color: #007BFF;
  margin-bottom: 10px;
}

.page-deposit-withdrawal-deposit-guide__feature-description {
  color: #666666;
  font-size: 0.95em;
}

.page-deposit-withdrawal-deposit-guide__step-list {
  list-style: none;
  padding: 0;
  counter-reset: step-counter;
}

.page-deposit-withdrawal-deposit-guide__step-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-left: 5px solid #007BFF;
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 8px;
  display: flex;
  align-items: flex-start;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.page-deposit-withdrawal-deposit-guide__step-number {
  counter-increment: step-counter;
  font-size: 1.8em;
  font-weight: bold;
  color: #FFD700;
  margin-right: 20px;
  flex-shrink: 0;
  background-color: #007BFF;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 123, 255, 0.4);
}

.page-deposit-withdrawal-deposit-guide__step-heading {
  font-size: 1.5em;
  color: #007BFF;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-deposit-withdrawal-deposit-guide__step-item p {
  margin-bottom: 0;
  color: #555555;
}

.page-deposit-withdrawal-deposit-guide__step-item a {
  color: #007BFF;
  text-decoration: none;
  font-weight: bold;
}

.page-deposit-withdrawal-deposit-guide__step-item a:hover {
  text-decoration: underline;
}

.page-deposit-withdrawal-deposit-guide__text-center {
  text-align: center;
  margin-top: 30px;
  font-size: 1.1em;
}

.page-deposit-withdrawal-deposit-guide__link--cta {
  color: #007BFF;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-deposit-withdrawal-deposit-guide__link--cta:hover {
  color: #FFD700;
  text-decoration: underline;
}

.page-deposit-withdrawal-deposit-guide__method-card {
  background-color: #f9f9f9;
  border: 1px solid #e9ecef;
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.page-deposit-withdrawal-deposit-guide__method-title {
  font-size: 1.8em;
  color: #007BFF;
  margin-bottom: 20px;
  border-bottom: 2px solid #FFD700;
  padding-bottom: 10px;
}

.page-deposit-withdrawal-deposit-guide__method-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
}

.page-deposit-withdrawal-deposit-guide__method-content--reverse {
  flex-direction: row-reverse;
}

.page-deposit-withdrawal-deposit-guide__method-text {
  flex: 2;
  min-width: 300px;
}

.page-deposit-withdrawal-deposit-guide__method-image {
  flex: 1;
  min-width: 250px;
  text-align: center;
}

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

.page-deposit-withdrawal-deposit-guide__image-caption {
  font-size: 0.9em;
  color: #777777;
  margin-top: 10px;
}

.page-deposit-withdrawal-deposit-guide__method-text h4 {
  font-size: 1.3em;
  color: #0056b3;
  margin-bottom: 15px;
}

.page-deposit-withdrawal-deposit-guide__method-text ol {
  list-style: decimal;
  margin-left: 20px;
  color: #555555;
}

.page-deposit-withdrawal-deposit-guide__method-text ol li {
  margin-bottom: 10px;
}

.page-deposit-withdrawal-deposit-guide__method-text strong {
  color: #007BFF;
}

.page-deposit-withdrawal-deposit-guide__text-warning {
  color: #dc3545;
  font-weight: bold;
}

.page-deposit-withdrawal-deposit-guide__text-small {
  font-size: 0.85em;
  color: #888888;
  font-style: italic;
}

.page-deposit-withdrawal-deposit-guide__list {
  list-style: disc;
  margin-left: 25px;
  color: #555555;
  font-size: 1.1em;
}

.page-deposit-withdrawal-deposit-guide__list li {
  margin-bottom: 15px;
  line-height: 1.8;
  padding-left: 10px;
}

.page-deposit-withdrawal-deposit-guide__list li strong {
  color: #007BFF;
}

.page-deposit-withdrawal-deposit-guide__text-emphasis {
  font-size: 1.2em;
  font-weight: bold;
  color: #007BFF;
  margin-top: 40px;
}

.page-deposit-withdrawal-deposit-guide__faq-item {
  background-color: #f0f8ff;
  border-left: 4px solid #FFD700;
  padding: 20px 25px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

.page-deposit-withdrawal-deposit-guide__faq-question {
  font-size: 1.25em;
  color: #007BFF;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-deposit-withdrawal-deposit-guide__faq-answer {
  color: #555555;
  font-size: 1em;
}

.page-deposit-withdrawal-deposit-guide__section--cta {
  background-color: #007BFF;
  color: #ffffff;
  text-align: center;
  padding: 70px 0;
  border-radius: 10px;
  margin-top: 30px;
  margin-bottom: 50px;
}

.page-deposit-withdrawal-deposit-guide__section--cta .page-deposit-withdrawal-deposit-guide__section-title {
  color: #FFD700;
}

.page-deposit-withdrawal-deposit-guide__section--cta .page-deposit-withdrawal-deposit-guide__section-title::after {
  background-color: #ffffff;
}

.page-deposit-withdrawal-deposit-guide__cta-content p {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #e0e0e0;
}

.page-deposit-withdrawal-deposit-guide__cta-buttons .page-deposit-withdrawal-deposit-guide__button {
  margin: 0 15px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-deposit-withdrawal-deposit-guide__title {
    font-size: 2.2em;
  }
  .page-deposit-withdrawal-deposit-guide__subtitle {
    font-size: 1.1em;
  }
  .page-deposit-withdrawal-deposit-guide__section-title {
    font-size: 1.8em;
  }
  .page-deposit-withdrawal-deposit-guide__method-content {
    flex-direction: column;
  }
  .page-deposit-withdrawal-deposit-guide__method-content--reverse {
    flex-direction: column;
  }
  .page-deposit-withdrawal-deposit-guide__method-text, .page-deposit-withdrawal-deposit-guide__method-image {
    min-width: unset;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .page-deposit-withdrawal-deposit-guide__hero {
    padding: 60px 0;
  }
  .page-deposit-withdrawal-deposit-guide__title {
    font-size: 1.8em;
  }
  .page-deposit-withdrawal-deposit-guide__subtitle {
    font-size: 1em;
  }
  .page-deposit-withdrawal-deposit-guide__button {
    padding: 12px 25px;
    font-size: 1em;
    margin-bottom: 15px;
  }
  .page-deposit-withdrawal-deposit-guide__features {
    grid-template-columns: 1fr;
  }
  .page-deposit-withdrawal-deposit-guide__step-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .page-deposit-withdrawal-deposit-guide__step-number {
    margin-right: 0;
    margin-bottom: 15px;
  }
  .page-deposit-withdrawal-deposit-guide__step-heading {
    font-size: 1.3em;
  }
  .page-deposit-withdrawal-deposit-guide__list {
    margin-left: 15px;
  }
  .page-deposit-withdrawal-deposit-guide__list li {
    padding-left: 0;
  }
}

@media (max-width: 480px) {
  .page-deposit-withdrawal-deposit-guide__button {
    display: block;
    margin: 10px auto;
  }
  .page-deposit-withdrawal-deposit-guide__cta-buttons .page-deposit-withdrawal-deposit-guide__button {
    margin: 10px auto;
  }
  .page-deposit-withdrawal-deposit-guide__section {
    padding: 40px 0;
  }
  .page-deposit-withdrawal-deposit-guide__section-title {
    font-size: 1.5em;
  }
  .page-deposit-withdrawal-deposit-guide__description {
    font-size: 0.95em;
  }
}