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

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

.page-payment-methods__hero {
  background: linear-gradient(135deg, #1A2E44 0%, #3a5f8a 100%);
  color: #fff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.page-payment-methods__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px;
  opacity: 0.9;
}

.page-payment-methods__hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-payment-methods__btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.page-payment-methods__btn--primary {
  background-color: #FFD700;
  color: #1A2E44;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-payment-methods__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-payment-methods__btn--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
  box-shadow: 0 4px 15px rgba(26, 46, 68, 0.2);
}

.page-payment-methods__btn--secondary:hover {
  background-color: #FFD700;
  color: #1A2E44;
  transform: translateY(-3px);
}

.page-payment-methods__btn--small {
  padding: 10px 20px;
  font-size: 0.95em;
  background-color: #1A2E44;
  color: #FFD700;
  border: 1px solid #FFD700;
}

.page-payment-methods__btn--small:hover {
  background-color: #FFD700;
  color: #1A2E44;
  border-color: #1A2E44;
}

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

.page-payment-methods__section:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
}

.page-payment-methods__deposit {
  background-color: #f0f4f7;
}

.page-payment-methods__withdrawal {
  background-color: #ffffff;
}

.page-payment-methods__section-title {
  font-size: 2.5em;
  color: #1A2E44;
  text-align: center;
  margin-bottom: 20px;
  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__section-intro {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px;
  color: #555;
}

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

.page-payment-methods__method-card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 20px 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;
  align-items: center;
  justify-content: space-between;
}

.page-payment-methods__method-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

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

.page-payment-methods__method-title {
  font-size: 1.8em;
  color: #1A2E44;
  margin-bottom: 15px;
  font-weight: bold;
}

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

.page-payment-methods__method-details {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
  text-align: left;
  width: 100%;
}

.page-payment-methods__method-details li {
  margin-bottom: 8px;
  color: #444;
  font-size: 0.95em;
}

.page-payment-methods__method-details li strong {
  color: #1A2E44;
}

.page-payment-methods__subsection-title {
  font-size: 2em;
  color: #1A2E44;
  text-align: center;
  margin-top: 60px;
  margin-bottom: 30px;
}

.page-payment-methods__steps {
  list-style: none;
  padding: 0;
  counter-reset: step-counter;
  max-width: 900px;
  margin: 0 auto 50px;
}

.page-payment-methods__steps li {
  counter-increment: step-counter;
  margin-bottom: 25px;
  padding-left: 60px;
  position: relative;
  font-size: 1.1em;
  color: #444;
}

.page-payment-methods__steps li::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: -5px;
  width: 40px;
  height: 40px;
  background-color: #FFD700;
  color: #1A2E44;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.3em;
  box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
}

.page-payment-methods__steps li strong {
  color: #1A2E44;
  font-size: 1.2em;
  display: block;
  margin-bottom: 5px;
}

.page-payment-methods__note {
  background-color: #fff3cd;
  color: #856404;
  border: 1px solid #ffeeba;
  border-radius: 8px;
  padding: 20px;
  margin-top: 40px;
  text-align: center;
  font-size: 1em;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-payment-methods__faq {
  background-color: #f0f4f7;
}

.page-payment-methods__faq-item {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
  padding: 25px;
  transition: all 0.3s ease;
}

.page-payment-methods__faq-item:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.page-payment-methods__faq-question {
  font-size: 1.3em;
  color: #1A2E44;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-payment-methods__faq-answer {
  font-size: 1em;
  color: #555;
  padding-top: 10px;
  border-top: 1px dashed #eee;
  display: none; /* Initially hidden */
}

.page-payment-methods__faq-item.active .page-payment-methods__faq-answer {
  display: block;
}

.page-payment-methods__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.5em;
  color: #FFD700;
  transition: transform 0.3s ease;
}

.page-payment-methods__faq-item.active .page-payment-methods__faq-question::after {
  content: '-';
  transform: rotate(180deg);
}

.page-payment-methods__details-list {
  background-color: #ffffff;
}

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

.page-payment-methods__detail-card {
  background-color: #f0f4f7;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.page-payment-methods__detail-title {
  font-size: 1.6em;
  color: #1A2E44;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-payment-methods__detail-link {
  text-decoration: none;
  color: #1A2E44;
  transition: color 0.3s ease;
}

.page-payment-methods__detail-link:hover {
  color: #FFD700;
}

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

.page-payment-methods__cta {
  background: linear-gradient(45deg, #1A2E44, #0d1e33);
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.page-payment-methods__cta-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-payment-methods__cta-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px;
  opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-payment-methods__hero-title {
    font-size: 2.5em;
  }
  .page-payment-methods__section-title {
    font-size: 2em;
  }
  .page-payment-methods__methods-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  .page-payment-methods__cta-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-payment-methods__hero {
    padding: 80px 0;
  }
  .page-payment-methods__hero-title {
    font-size: 2em;
  }
  .page-payment-methods__hero-description,
  .page-payment-methods__section-intro,
  .page-payment-methods__cta-description {
    font-size: 1em;
  }
  .page-payment-methods__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-payment-methods__btn {
    width: 80%;
    max-width: 300px;
    margin: 0 auto;
  }
  .page-payment-methods__section {
    padding: 40px 0;
  }
  .page-payment-methods__section-title {
    font-size: 1.8em;
  }
  .page-payment-methods__method-card {
    padding: 25px;
  }
  .page-payment-methods__method-title {
    font-size: 1.5em;
  }
  .page-payment-methods__subsection-title {
    font-size: 1.8em;
  }
  .page-payment-methods__steps li {
    padding-left: 50px;
    font-size: 1em;
  }
  .page-payment-methods__steps li::before {
    width: 35px;
    height: 35px;
    font-size: 1.1em;
  }
  .page-payment-methods__faq-question {
    font-size: 1.2em;
  }
  .page-payment-methods__cta-title {
    font-size: 2em;
  }
}

@media (max-width: 480px) {
  .page-payment-methods__hero {
    padding: 60px 0;
  }
  .page-payment-methods__hero-title {
    font-size: 1.8em;
  }
  .page-payment-methods__hero-description {
    font-size: 0.9em;
  }
  .page-payment-methods__btn {
    font-size: 1em;
    padding: 12px 25px;
  }
  .page-payment-methods__section-title {
    font-size: 1.6em;
  }
  .page-payment-methods__methods-grid {
    grid-template-columns: 1fr;
  }
  .page-payment-methods__method-icon {
    width: 60px;
    height: 60px;
  }
  .page-payment-methods__method-title {
    font-size: 1.3em;
  }
  .page-payment-methods__subsection-title {
    font-size: 1.6em;
  }
  .page-payment-methods__steps li strong {
    font-size: 1.1em;
  }
  .page-payment-methods__faq-question {
    font-size: 1.1em;
  }
  .page-payment-methods__cta-title {
    font-size: 1.8em;
  }
}