.page-payment-methods {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f9fa;
}

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

.page-payment-methods__hero {
  background: linear-gradient(135deg, #0A2463 0%, #1a3d7a 100%); /* Darker blue to slightly lighter blue */
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-payment-methods__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
  color: #ffffff;
}

.page-payment-methods__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #e0e0e0;
}

.page-payment-methods__cta-button {
  display: inline-block;
  background-color: #E3B505;
  color: #0A2463;
  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;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-payment-methods__cta-button:hover {
  background-color: #f0c20f;
  transform: translateY(-2px);
}

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

.page-payment-methods__section:nth-of-type(even) {
  background-color: #fefefe;
}

.page-payment-methods__section-title {
  font-size: 2.5em;
  color: #0A2463;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

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

.page-payment-methods__overview p, .page-payment-methods__transaction-tips p, .page-payment-methods__deposit-methods p, .page-payment-methods__withdrawal-methods p, .page-payment-methods__detail-pages p {
  font-size: 1.1em;
  color: #555;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 30px auto;
}

.page-payment-methods__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-payment-methods__feature-card {
  text-align: center;
  padding: 30px;
  background-color: #f4f6f8;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-payment-methods__feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.page-payment-methods__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 2px 5px rgba(0,0,0,0.1));
}

.page-payment-methods__feature-card h3 {
  font-size: 1.5em;
  color: #0A2463;
  margin-bottom: 15px;
}

.page-payment-methods__feature-card p {
  font-size: 1em;
  color: #666;
  margin-bottom: 0;
}

.page-payment-methods__method-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-payment-methods__method-card {
  background-color: #f4f6f8;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-payment-methods__method-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.page-payment-methods__method-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 2px 5px rgba(0,0,0,0.1));
}

.page-payment-methods__method-card h3 {
  font-size: 1.6em;
  color: #0A2463;
  margin-bottom: 15px;
}

.page-payment-methods__method-card p {
  font-size: 1em;
  color: #666;
  margin-bottom: 20px;
}

.page-payment-methods__method-button {
  display: inline-block;
  background-color: #0A2463;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  transition: background-color 0.3s ease;
}

.page-payment-methods__method-button:hover {
  background-color: #1a3d7a;
}

.page-payment-methods__note {
  font-style: italic;
  color: #777;
  margin-top: 30px;
  font-size: 0.95em;
}

.page-payment-methods__full-width-image {
  width: 100%;
  max-width: 900px;
  height: auto;
  margin: 40px auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-payment-methods__tip-list {
  list-style: none;
  padding: 0;
  max-width: 900px;
  margin: 0 auto 30px auto;
}

.page-payment-methods__tip-list li {
  background-color: #f4f6f8;
  border-left: 5px solid #E3B505;
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 5px;
  font-size: 1.1em;
  color: #444;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-payment-methods__tip-list li strong {
  color: #0A2463;
}

.page-payment-methods__faqs {
  background-color: #f4f6f8;
}

.page-payment-methods__faq-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-payment-methods__faq-item h3 {
  font-size: 1.4em;
  color: #0A2463;
  margin-top: 0;
  margin-bottom: 15px;
}

.page-payment-methods__faq-item p {
  font-size: 1em;
  color: #555;
  margin-bottom: 0;
  text-align: left;
}

.page-payment-methods__detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-payment-methods__detail-card {
  background-color: #f4f6f8;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-payment-methods__detail-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.page-payment-methods__detail-card h3 {
  font-size: 1.5em;
  color: #0A2463;
  margin-bottom: 15px;
}

.page-payment-methods__detail-card h3 a {
  color: #0A2463;
  text-decoration: none;
}

.page-payment-methods__detail-card h3 a:hover {
  text-decoration: underline;
  color: #E3B505;
}

.page-payment-methods__detail-card p {
  font-size: 1em;
  color: #666;
  margin-bottom: 20px;
}

.page-payment-methods__detail-button {
  display: inline-block;
  background-color: #E3B505;
  color: #0A2463;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  transition: background-color 0.3s ease;
}

.page-payment-methods__detail-button:hover {
  background-color: #f0c20f;
}

.page-payment-methods .highlight {
  color: #E3B505;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-payment-methods__hero-title {
    font-size: 2.5em;
  }
  .page-payment-methods__hero-description {
    font-size: 1.1em;
  }
  .page-payment-methods__section-title {
    font-size: 2em;
  }
  .page-payment-methods__grid, .page-payment-methods__method-grid, .page-payment-methods__detail-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
  .page-payment-methods__section {
    padding: 40px 0;
  }
}

@media (max-width: 768px) {
  .page-payment-methods__hero-title {
    font-size: 2em;
  }
  .page-payment-methods__hero-description {
    font-size: 1em;
  }
  .page-payment-methods__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-payment-methods__section-title {
    font-size: 1.8em;
  }
  .page-payment-methods__overview p, .page-payment-methods__transaction-tips p, .page-payment-methods__deposit-methods p, .page-payment-methods__withdrawal-methods p, .page-payment-methods__detail-pages p {
    font-size: 0.95em;
  }
  .page-payment-methods__feature-card h3, .page-payment-methods__method-card h3, .page-payment-methods__detail-card h3 {
    font-size: 1.3em;
  }
  .page-payment-methods__faq-item h3 {
    font-size: 1.2em;
  }
}

@media (max-width: 576px) {
  .page-payment-methods__hero-title {
    font-size: 1.8em;
  }
  .page-payment-methods__hero-description {
    font-size: 0.9em;
  }
  .page-payment-methods__section-title {
    font-size: 1.5em;
  }
  .page-payment-methods__grid, .page-payment-methods__method-grid, .page-payment-methods__detail-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .page-payment-methods__section {
    padding: 30px 0;
  }
  .page-payment-methods__container {
    padding: 0 15px;
  }
  .page-payment-methods__feature-card, .page-payment-methods__method-card, .page-payment-methods__detail-card, .page-payment-methods__faq-item {
    padding: 20px;
  }
}