/* style/deposit-withdrawal-withdrawal-methods.css */
.page-deposit-withdrawal-withdrawal-methods {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333333; /* Darker text for better contrast on light backgrounds */
  background-color: #f8f8f8;
}

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

.page-deposit-withdrawal-withdrawal-methods__hero {
  background: linear-gradient(135deg, #003366 0%, #0a4d8c 100%); /* Dark blue gradient */
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-deposit-withdrawal-withdrawal-methods__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFCC00; /* Gold for highlight */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-deposit-withdrawal-withdrawal-methods__hero-subtitle {
  font-size: 1.3em;
  max-width: 800px;
  margin: 0 auto 30px auto;
  color: #e0e0e0;
}

.page-deposit-withdrawal-withdrawal-methods__cta-button {
  display: inline-block;
  background-color: #FFCC00; /* Gold */
  color: #003366; /* Dark blue text for contrast */
  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: 2px solid #FFCC00;
}

.page-deposit-withdrawal-withdrawal-methods__cta-button:hover {
  background-color: #e6b800; /* Darker gold */
  transform: translateY(-3px);
}

.page-deposit-withdrawal-withdrawal-methods__section {
  padding: 60px 0;
}

.page-deposit-withdrawal-withdrawal-methods__section:nth-of-type(even) {
  background-color: #eef4f8; /* Light blue-grey for alternating sections */
}

.page-deposit-withdrawal-withdrawal-methods__section-title {
  font-size: 2.5em;
  color: #003366; /* Dark blue */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

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

.page-deposit-withdrawal-withdrawal-methods__introduction p {
  font-size: 1.1em;
  text-align: justify;
  margin-bottom: 15px;
}

.page-deposit-withdrawal-withdrawal-methods__method-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  margin-bottom: 30px;
  transition: transform 0.3s ease;
}

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

.page-deposit-withdrawal-withdrawal-methods__method-icon {
  font-size: 3em;
  color: #FFCC00; /* Gold */
  text-align: center;
  margin-bottom: 20px;
}

.page-deposit-withdrawal-withdrawal-methods__method-title {
  font-size: 1.8em;
  color: #003366; /* Dark blue */
  margin-bottom: 15px;
  text-align: center;
}

.page-deposit-withdrawal-withdrawal-methods__method-subtitle {
  font-size: 1.4em;
  color: #003366;
  margin-top: 25px;
  margin-bottom: 15px;
  border-left: 4px solid #FFCC00;
  padding-left: 15px;
}

.page-deposit-withdrawal-withdrawal-methods__list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.page-deposit-withdrawal-withdrawal-methods__list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  color: #555555;
}

.page-deposit-withdrawal-withdrawal-methods__list li::before {
  content: '•';
  color: #FFCC00; /* Gold bullet */
  position: absolute;
  left: 0;
  font-weight: bold;
  font-size: 1.2em;
  line-height: 1;
}

.page-deposit-withdrawal-withdrawal-methods__step-list {
  list-style: decimal;
  padding-left: 25px;
  margin-bottom: 20px;
}

.page-deposit-withdrawal-withdrawal-methods__step-list li {
  margin-bottom: 10px;
  color: #555555;
}

.page-deposit-withdrawal-withdrawal-methods__step-list li strong {
  color: #003366;
}

.page-deposit-withdrawal-withdrawal-methods__note {
  background-color: #fff3cd; /* Light yellow background for notes */
  border-left: 5px solid #ffc107; /* Orange border */
  padding: 15px 20px;
  border-radius: 5px;
  color: #664d03;
  margin-top: 20px;
}

.page-deposit-withdrawal-withdrawal-methods__cta-bottom {
  text-align: center;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid #e0e0e0;
}

.page-deposit-withdrawal-withdrawal-methods__cta-bottom p {
  font-size: 1.2em;
  margin-bottom: 25px;
  color: #003366;
  font-weight: bold;
}

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

.page-deposit-withdrawal-withdrawal-methods__info-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
}

.page-deposit-withdrawal-withdrawal-methods__info-title {
  font-size: 1.8em;
  color: #003366;
  margin-bottom: 20px;
  text-align: center;
}

.page-deposit-withdrawal-withdrawal-methods__condition-item {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: 25px;
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.page-deposit-withdrawal-withdrawal-methods__condition-icon {
  font-size: 2.5em;
  color: #FFCC00;
  flex-shrink: 0;
}

.page-deposit-withdrawal-withdrawal-methods__condition-title {
  font-size: 1.5em;
  color: #003366;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-deposit-withdrawal-withdrawal-methods__checklist {
  list-style: none;
  padding-left: 0;
}

.page-deposit-withdrawal-withdrawal-methods__checklist li {
  position: relative;
  padding-left: 40px;
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #333333;
}

.page-deposit-withdrawal-withdrawal-methods__checklist-icon {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.5em;
  color: #28a745; /* Green for checkmark */
  font-weight: bold;
}

.page-deposit-withdrawal-withdrawal-methods__contact-list {
  list-style: none;
  padding-left: 0;
  text-align: center;
  margin-top: 30px;
}

.page-deposit-withdrawal-withdrawal-methods__contact-list li {
  font-size: 1.2em;
  margin-bottom: 15px;
  color: #003366;
}

.page-deposit-withdrawal-withdrawal-methods__contact-icon {
  color: #FFCC00; /* Gold icon */
  margin-right: 10px;
  font-size: 1.3em;
}

.page-deposit-withdrawal-withdrawal-methods__conclusion p {
  font-size: 1.1em;
  text-align: justify;
  margin-bottom: 15px;
}

.page-deposit-withdrawal-withdrawal-methods__text-link {
  color: #003366; /* Dark blue */
  font-weight: bold;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-deposit-withdrawal-withdrawal-methods__text-link:hover {
  color: #FFCC00; /* Gold on hover */
}

.page-deposit-withdrawal-withdrawal-methods__final-cta {
  text-align: center;
  margin-top: 50px;
}

.page-deposit-withdrawal-withdrawal-methods__cta-button--large {
  padding: 18px 40px;
  font-size: 1.3em;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-deposit-withdrawal-withdrawal-methods__hero {
    padding: 60px 0;
  }

  .page-deposit-withdrawal-withdrawal-methods__hero-title {
    font-size: 2.5em;
  }

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

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

  .page-deposit-withdrawal-withdrawal-methods__method-title,
  .page-deposit-withdrawal-withdrawal-methods__info-title {
    font-size: 1.5em;
  }

  .page-deposit-withdrawal-withdrawal-methods__method-subtitle {
    font-size: 1.2em;
  }

  .page-deposit-withdrawal-withdrawal-methods__condition-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .page-deposit-withdrawal-withdrawal-methods__condition-icon {
    margin-bottom: 15px;
  }

  .page-deposit-withdrawal-withdrawal-methods__checklist li {
    padding-left: 30px;
  }

  .page-deposit-withdrawal-withdrawal-methods__checklist-icon {
    font-size: 1.2em;
  }
}

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

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

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

  .page-deposit-withdrawal-withdrawal-methods__cta-button--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }

  .page-deposit-withdrawal-withdrawal-methods__container {
    padding: 0 15px;
  }
}