/* style/resources-deposit-withdrawal-methods.css */
.page-resources-deposit-withdrawal-methods {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #E0E0E0; /* Light gray for main text on dark background */
  background-color: #0A2342; /* Main brand color for overall background */
}

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

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

.page-resources-deposit-withdrawal-methods__hero {
  background: linear-gradient(135deg, #0A2342 0%, #1A3A60 100%); /* Dark blue gradient */
  padding: 100px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.page-resources-deposit-withdrawal-methods__hero-content {
  z-index: 10;
  max-width: 800px;
}

.page-resources-deposit-withdrawal-methods__hero h1 {
  font-size: 3.2em;
  color: #FFD700; /* Accent gold for main title */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.page-resources-deposit-withdrawal-methods__hero p {
  font-size: 1.3em;
  color: #FFFFFF; /* White for hero paragraph */
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-deposit-withdrawal-methods__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.15;
  z-index: 5;
}

.page-resources-deposit-withdrawal-methods__hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-resources-deposit-withdrawal-methods h2 {
  font-size: 2.5em;
  color: #FFD700; /* Accent gold for section titles */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

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

.page-resources-deposit-withdrawal-methods h3 {
  font-size: 1.8em;
  color: #FFFFFF; /* White for sub-titles */
  margin-top: 40px;
  margin-bottom: 20px;
  border-left: 5px solid #FFD700;
  padding-left: 15px;
}

.page-resources-deposit-withdrawal-methods p {
  font-size: 1.1em;
  margin-bottom: 15px;
  color: #E0E0E0;
}

.page-resources-deposit-withdrawal-methods ul,
.page-resources-deposit-withdrawal-methods ol {
  margin-bottom: 20px;
  padding-left: 25px;
  list-style-type: disc;
}

.page-resources-deposit-withdrawal-methods ol {
  list-style-type: decimal;
}

.page-resources-deposit-withdrawal-methods li {
  margin-bottom: 10px;
  color: #E0E0E0;
}

.page-resources-deposit-withdrawal-methods li strong {
  color: #FFD700;
}

.page-resources-deposit-withdrawal-methods__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin: 10px;
  cursor: pointer;
}

.page-resources-deposit-withdrawal-methods__btn--primary {
  background-color: #FFD700; /* Accent gold for primary button */
  color: #0A2342; /* Dark blue text on gold */
}

.page-resources-deposit-withdrawal-methods__btn--primary:hover {
  background-color: #E6C200; /* Slightly darker gold on hover */
  transform: translateY(-2px);
}

.page-resources-deposit-withdrawal-methods__btn--secondary {
  background-color: #1A3A60; /* Darker blue for secondary button */
  color: #FFD700; /* Accent gold text on dark blue */
  border: 2px solid #FFD700;
}

.page-resources-deposit-withdrawal-methods__btn--secondary:hover {
  background-color: #2D5280; /* Slightly lighter blue on hover */
  transform: translateY(-2px);
}

.page-resources-deposit-withdrawal-methods__image--small {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 30px auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-resources-deposit-withdrawal-methods__image--large {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-resources-deposit-withdrawal-methods__faq {
  background-color: #071C35; /* Slightly lighter dark blue for FAQ section */
}

.page-resources-deposit-withdrawal-methods__faq-item {
  background-color: #1A3A60;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-resources-deposit-withdrawal-methods__faq-item h3 {
  color: #FFD700;
  font-size: 1.5em;
  margin-top: 0;
  margin-bottom: 15px;
  border-left: none;
  padding-left: 0;
}

.page-resources-deposit-withdrawal-methods__faq-item p {
  color: #CCCCCC;
  font-size: 1em;
}

.page-resources-deposit-withdrawal-methods__cta {
  text-align: center;
  padding: 80px 0;
  background: linear-gradient(135deg, #1A3A60 0%, #0A2342 100%);
}

.page-resources-deposit-withdrawal-methods__cta h2 {
  color: #FFD700;
  margin-bottom: 25px;
}

.page-resources-deposit-withdrawal-methods__cta p {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #FFFFFF;
}

.page-resources-deposit-withdrawal-methods__cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

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

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

  .page-resources-deposit-withdrawal-methods h2 {
    font-size: 2em;
  }

  .page-resources-deposit-withdrawal-methods h3 {
    font-size: 1.5em;
  }

  .page-resources-deposit-withdrawal-methods__btn {
    padding: 12px 25px;
    font-size: 1em;
    margin: 8px;
  }

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

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

  .page-resources-deposit-withdrawal-methods h2 {
    font-size: 1.8em;
  }

  .page-resources-deposit-withdrawal-methods h3 {
    font-size: 1.3em;
  }

  .page-resources-deposit-withdrawal-methods p,
  .page-resources-deposit-withdrawal-methods li {
    font-size: 0.95em;
  }

  .page-resources-deposit-withdrawal-methods__btn {
    width: 100%;
    margin: 5px 0;
  }

  .page-resources-deposit-withdrawal-methods__cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}