/* style/resources-90ok-deposit-withdrawal-methods.css */

.page-resources-90ok-deposit-withdrawal-methods {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333333; /* Dark grey for body text for optimal contrast */
  background-color: #f9f9f9;
}

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

.page-resources-90ok-deposit-withdrawal-methods__hero {
  background: linear-gradient(135deg, #007bff, #28a745);
  color: #ffffff; /* White text on brand color background for contrast */
  padding: 80px 0;
  text-align: center;
}

.page-resources-90ok-deposit-withdrawal-methods__title {
  font-size: 3em;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-resources-90ok-deposit-withdrawal-methods__subtitle {
  font-size: 1.2em;
  margin-bottom: 30px;
}

.page-resources-90ok-deposit-withdrawal-methods__cta-button {
  display: inline-block;
  background-color: #ff8400; /* Complementary orange for strong CTA */
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-resources-90ok-deposit-withdrawal-methods__cta-button:hover {
  background-color: #e67500;
  transform: translateY(-2px);
}

.page-resources-90ok-deposit-withdrawal-methods__section {
  padding: 60px 0;
  border-bottom: 1px solid #eeeeee;
}

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

.page-resources-90ok-deposit-withdrawal-methods__section-title {
  font-size: 2.2em;
  color: #007bff; /* Main brand color for headings */
  margin-bottom: 30px;
  text-align: center;
  font-weight: bold;
}

.page-resources-90ok-deposit-withdrawal-methods__section-title .highlight {
  color: #28a745; /* Auxiliary color for keyword highlight */
}

.page-resources-90ok-deposit-withdrawal-methods__introduction p,
.page-resources-90ok-deposit-withdrawal-methods__important-notes ul,
.page-resources-90ok-deposit-withdrawal-methods__why-90ok ul {
  font-size: 1.05em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-resources-90ok-deposit-withdrawal-methods__method-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  margin-bottom: 40px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-resources-90ok-deposit-withdrawal-methods__method-card:nth-child(even) {
  flex-direction: column-reverse; /* Alternate image position */
}

.page-resources-90ok-deposit-withdrawal-methods__method-title {
  font-size: 1.8em;
  color: #007bff;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-resources-90ok-deposit-withdrawal-methods__method-details {
  text-align: left;
  width: 100%;
}

.page-resources-90ok-deposit-withdrawal-methods__method-details h4 {
  font-size: 1.3em;
  color: #28a745; /* Auxiliary color for sub-headings */
  margin-top: 20px;
  margin-bottom: 10px;
}

.page-resources-90ok-deposit-withdrawal-methods__method-details ol,
.page-resources-90ok-deposit-withdrawal-methods__method-details ul {
  margin-left: 25px;
  margin-bottom: 15px;
  list-style-type: decimal;
}

.page-resources-90ok-deposit-withdrawal-methods__method-details ul {
  list-style-type: disc;
}

.page-resources-90ok-deposit-withdrawal-methods__method-details li {
  margin-bottom: 8px;
}

.page-resources-90ok-deposit-withdrawal-methods__image-full-width {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-top: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-resources-90ok-deposit-withdrawal-methods__method-image {
  width: 80%; /* Smaller for individual method images */
  max-width: 500px;
  height: auto;
  border-radius: 8px;
  margin-top: 25px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
}

.page-resources-90ok-deposit-withdrawal-methods__cta-button--bottom {
  margin-top: 40px;
}

/* Responsive Design */
@media (min-width: 768px) {
  .page-resources-90ok-deposit-withdrawal-methods__method-card {
    flex-direction: row;
    text-align: left;
  }

  .page-resources-90ok-deposit-withdrawal-methods__method-card:nth-child(even) {
    flex-direction: row-reverse;
  }

  .page-resources-90ok-deposit-withdrawal-methods__method-details,
  .page-resources-90ok-deposit-withdrawal-methods__method-image {
    flex: 1;
    padding: 0 20px;
  }

  .page-resources-90ok-deposit-withdrawal-methods__method-image {
    width: 40%;
    margin-top: 0;
  }

  .page-resources-90ok-deposit-withdrawal-methods__title {
    font-size: 4em;
  }

  .page-resources-90ok-deposit-withdrawal-methods__section-title {
    font-size: 2.8em;
  }
}

@media (max-width: 767px) {
  .page-resources-90ok-deposit-withdrawal-methods__title {
    font-size: 2.5em;
  }

  .page-resources-90ok-deposit-withdrawal-methods__subtitle {
    font-size: 1em;
  }

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

  .page-resources-90ok-deposit-withdrawal-methods__method-title {
    font-size: 1.5em;
  }

  .page-resources-90ok-deposit-withdrawal-methods__method-details h4 {
    font-size: 1.1em;
  }

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