/* style/payment-methods.css */
.page-payment-methods {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
}

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

.page-payment-methods__hero-section {
  background: linear-gradient(135deg, #0A2463, #3A5B9C);
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.page-payment-methods__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FFD700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-payment-methods__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-payment-methods__hero-button,
.page-payment-methods__button {
  display: inline-block;
  background-color: #FFD700;
  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;
  border: none;
  cursor: pointer;
}

.page-payment-methods__hero-button:hover,
.page-payment-methods__button:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-payment-methods__button--primary {
  background-color: #FFD700;
  color: #0A2463;
}

.page-payment-methods__button--primary:hover {
  background-color: #e6c200;
}

.page-payment-methods__button--secondary {
  background-color: #0A2463;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-payment-methods__button--secondary:hover {
  background-color: #1a3a7c;
  color: #fff;
}

.page-payment-methods__section {
  padding: 60px 0;
  background-color: #f9f9f9;
  border-bottom: 1px solid #eee;
}

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

.page-payment-methods__section-title {
  font-size: 2.2em;
  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: #FFD700;
  border-radius: 2px;
}

.page-payment-methods__overview p,
.page-payment-methods__deposit-methods p,
.page-payment-methods__withdrawal-methods p,
.page-payment-methods__how-to-deposit p,
.page-payment-methods__how-to-withdraw p,
.page-payment-methods__important-notes p {
  text-align: center;
  margin-bottom: 30px;
  font-size: 1.1em;
}

.page-payment-methods__image {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

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

.page-payment-methods__method-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid #eee;
}

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

.page-payment-methods__method-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  object-fit: contain;
}

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

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

.page-payment-methods__method-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  font-size: 0.95em;
  color: #666;
}

.page-payment-methods__method-card ul li {
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}

.page-payment-methods__method-card ul li::before {
  content: '✔';
  color: #FFD700;
  position: absolute;
  left: 0;
  top: 0;
}

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

.page-payment-methods__step-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid #eee;
}

.page-payment-methods__step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: #0A2463;
  color: #FFD700;
  border-radius: 50%;
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 20px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.page-payment-methods__step-title {
  font-size: 1.4em;
  color: #0A2463;
  margin-bottom: 15px;
}

.page-payment-methods__step-card p {
  font-size: 1em;
  color: #555;
  text-align: center;
}

.page-payment-methods__notes-list {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 40px auto;
}

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

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

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

.page-payment-methods__faq-question {
  font-size: 1.3em;
  color: #0A2463;
  margin-bottom: 10px;
}

.page-payment-methods__faq-answer {
  font-size: 1em;
  color: #555;
  padding-left: 10px;
  border-left: 3px solid #FFD700;
}

.page-payment-methods__cta-bottom {
  background-color: #0A2463;
  color: #fff;
  text-align: center;
  padding: 80px 0;
}

.page-payment-methods__cta-content .page-payment-methods__section-title {
  color: #FFD700;
}

.page-payment-methods__cta-content .page-payment-methods__section-title::after {
  background-color: #FFD700;
}

.page-payment-methods__cta-bottom p {
  font-size: 1.2em;
  max-width: 900px;
  margin: 0 auto 40px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-payment-methods__hero-title {
    font-size: 2em;
  }

  .page-payment-methods__hero-description {
    font-size: 1em;
  }

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

  .page-payment-methods__method-grid,
  .page-payment-methods__steps-grid {
    grid-template-columns: 1fr;
  }
}

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

  .page-payment-methods__hero-button,
  .page-payment-methods__button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-payment-methods__section-title {
    font-size: 1.5em;
  }

  .page-payment-methods__method-card,
  .page-payment-methods__step-card,
  .page-payment-methods__faq-item,
  .page-payment-methods__notes-list li {
    padding: 20px;
  }
}