/* style/payment-methods.css */
.page-payment-methods {
  color: #333333; /* Dark text for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-payment-methods__hero-section {
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding to respect header offset handled by body */
  text-align: center;
  background-color: #000000; /* Dark background for hero */
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.page-payment-methods__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.page-payment-methods__hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.3;
}

.page-payment-methods__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 0;
}

.page-payment-methods__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  margin-bottom: 20px;
  font-size: clamp(1.75rem, 5vw, 2.5rem);
}

.page-payment-methods__hero-description {
  font-size: 1.15rem;
  margin-bottom: 30px;
  color: #F0F0F0;
}

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

.page-payment-methods__button {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-payment-methods__button--register {
  background-color: #FFFFFF;
  color: #000000;
}

.page-payment-methods__button--register:hover {
  background-color: #F0F0F0;
}

.page-payment-methods__button--login {
  background-color: #FCBC45;
  color: #000000;
}

.page-payment-methods__button--login:hover {
  background-color: #e0a53b;
}

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

.page-payment-methods__overview-section,
.page-payment-methods__deposit-options,
.page-payment-methods__withdrawal-options,
.page-payment-methods__security-section,
.page-payment-methods__faq-section,
.page-payment-methods__call-to-action {
  padding: 80px 0;
  background-color: #FFFFFF;
}

.page-payment-methods__overview-section,
.page-payment-methods__security-section {
  background-color: #F8F8F8;
}

.page-payment-methods__section-title {
  font-size: 2.2rem;
  color: #000000;
  text-align: center;
  margin-bottom: 25px;
}

.page-payment-methods__section-description {
  font-size: 1.1rem;
  color: #555555;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
}

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

.page-payment-methods__feature-item,
.page-payment-methods__method-card,
.page-payment-methods__security-item {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-payment-methods__feature-icon,
.page-payment-methods__method-icon,
.page-payment-methods__security-icon {
  width: 100%; /* Ensure images take full width of card */
  height: auto;
  max-width: 100%;
  min-width: 200px;
  min-height: 200px;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-payment-methods__feature-title,
.page-payment-methods__method-name,
.page-payment-methods__security-title {
  font-size: 1.5rem;
  color: #000000;
  margin-bottom: 15px;
}

.page-payment-methods__feature-text,
.page-payment-methods__method-description,
.page-payment-methods__security-text {
  font-size: 1rem;
  color: #666666;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-payment-methods__method-details {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  text-align: left;
  color: #555555;
}

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

.page-payment-methods__method-details li::before {
  content: '✔';
  color: #FCBC45;
  position: absolute;
  left: 0;
}

.page-payment-methods__cta-block {
  text-align: center;
  margin-top: 60px;
  padding: 40px;
  background-color: #000000;
  color: #FFFFFF;
  border-radius: 10px;
}

.page-payment-methods__cta-block p {
  font-size: 1.2rem;
  margin-bottom: 25px;
}

.page-payment-methods__faq-list {
  margin-top: 40px;
}

.page-payment-methods__faq-item {
  background-color: #FFFFFF;
  border: 1px solid #EEEEEE;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 25px;
  text-align: left;
}

.page-payment-methods__faq-question {
  font-size: 1.3rem;
  color: #000000;
  margin-bottom: 10px;
}

.page-payment-methods__faq-answer {
  font-size: 1rem;
  color: #666666;
}

.page-payment-methods__call-to-action {
  background-color: #000000;
  color: #FFFFFF;
  text-align: center;
  padding: 100px 0;
}

.page-payment-methods__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-payment-methods__hero-content {
    padding: 20px 0;
  }

  .page-payment-methods__main-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

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

  .page-payment-methods__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-payment-methods__button {
    width: 100%;
    max-width: 300px;
  }

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

  .page-payment-methods__section-description {
    font-size: 1rem;
  }

  .page-payment-methods__features,
  .page-payment-methods__method-grid,
  .page-payment-methods__security-features {
    grid-template-columns: 1fr;
  }

  .page-payment-methods__feature-item img,
  .page-payment-methods__method-card img,
  .page-payment-methods__security-item img {
    max-width: 100%;
    height: auto;
  }

  .page-payment-methods__overview-section,
  .page-payment-methods__deposit-options,
  .page-payment-methods__withdrawal-options,
  .page-payment-methods__security-section,
  .page-payment-methods__faq-section,
  .page-payment-methods__call-to-action {
    padding: 40px 0;
  }

  .page-payment-methods__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  /* Ensure content images do not overflow */
  .page-payment-methods img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-payment-methods__button {
    padding: 12px 20px;
    font-size: 0.9rem;
  }
}