.page-payment-methods {
  padding-top: 10px;
  background-color: #08162B;
  color: #F3F8FF;
  font-family: Arial, sans-serif;
}

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

.page-payment-methods__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  padding: 40px 20px;
  background: linear-gradient(180deg, #113B7A 0%, #08162B 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-payment-methods__hero-content {
  z-index: 2;
  max-width: 800px;
}

.page-payment-methods__hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: #F3F8FF;
  margin-bottom: 15px;
}

.page-payment-methods__hero-description {
  font-size: 1.125rem;
  color: #AFC4E8;
  line-height: 1.6;
}

.page-payment-methods__hero-image-container {
  width: 100%;
  max-width: 1200px;
  margin-top: 20px;
}

.page-payment-methods__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-payment-methods__section-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #F2C14E;
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 10px;
}

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

.page-payment-methods__section-description {
  font-size: 1rem;
  color: #AFC4E8;
  text-align: center;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-payment-methods__overview-section,
.page-payment-methods__methods-detail-section,
.page-payment-methods__deposit-guide-section,
.page-payment-methods__withdraw-guide-section,
.page-payment-methods__security-section,
.page-payment-methods__faq-section,
.page-payment-methods__cta-section {
  padding: 60px 0;
}

.page-payment-methods__methods-detail-section .page-payment-methods__method-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  background-color: #10233F;
  border-radius: 10px;
  margin-bottom: 40px;
  padding: 30px;
  gap: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #244D84;
}

.page-payment-methods__methods-detail-section .page-payment-methods__method-card--reverse {
  flex-direction: row-reverse;
}

.page-payment-methods__method-image-wrapper {
  flex: 1;
  min-width: 200px;
}

.page-payment-methods__method-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  min-width: 200px;
  min-height: 200px;
}

.page-payment-methods__method-content {
  flex: 1;
  min-width: 200px;
}

.page-payment-methods__method-title {
  font-size: 1.75rem;
  color: #F3F8FF;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-payment-methods__method-text {
  font-size: 1rem;
  color: #AFC4E8;
  line-height: 1.6;
  margin-bottom: 20px;
}

.page-payment-methods__method-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-payment-methods__method-features li {
  font-size: 0.95rem;
  color: #F3F8FF;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.page-payment-methods__feature-icon {
  color: #4FA8FF;
  font-size: 1.2rem;
  line-height: 1;
}

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

.page-payment-methods__guide-list li {
  background-color: #10233F;
  border: 1px solid #244D84;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 15px;
  font-size: 1rem;
  color: #F3F8FF;
  line-height: 1.6;
}

.page-payment-methods__guide-list li strong {
  color: #F2C14E;
}

.page-payment-methods__inline-link {
  color: #4FA8FF;
  text-decoration: none;
  font-weight: bold;
}

.page-payment-methods__inline-link:hover {
  text-decoration: underline;
}

.page-payment-methods__cta-button {
  display: block;
  width: fit-content;
  margin: 0 auto;
  padding: 15px 30px;
  background: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%);
  color: #F3F8FF;
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: bold;
  text-align: center;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-payment-methods__cta-button:hover {
  box-shadow: 0 0 15px #4FA8FF;
  transform: translateY(-2px);
}

.page-payment-methods__note-text {
  font-size: 0.95rem;
  color: #AFC4E8;
  text-align: center;
  margin-top: -20px;
  margin-bottom: 40px;
}

.page-payment-methods__note-text strong {
  color: #F2C14E;
}

.page-payment-methods__security-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
  background-color: #10233F;
  border-radius: 10px;
  padding: 40px;
  border: 1px solid #244D84;
}

.page-payment-methods__security-image-wrapper {
  flex: 1;
  min-width: 200px;
}

.page-payment-methods__security-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  min-width: 200px;
  min-height: 200px;
}

.page-payment-methods__security-features {
  flex: 1;
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-payment-methods__security-features li {
  font-size: 1rem;
  color: #F3F8FF;
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.page-payment-methods__security-features li:last-child {
  margin-bottom: 0;
}

.page-payment-methods__security-features strong {
  color: #F2C14E;
}

.page-payment-methods__faq-item {
  background-color: #10233F;
  border: 1px solid #244D84;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-payment-methods__faq-question {
  font-size: 1.15rem;
  color: #F3F8FF;
  font-weight: 600;
  margin-bottom: 10px;
  cursor: pointer;
}

.page-payment-methods__faq-answer {
  font-size: 0.95rem;
  color: #AFC4E8;
  line-height: 1.6;
}

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

.page-payment-methods__cta-button--secondary {
  background: #1D5FD1;
  border: 1px solid #1D5FD1;
}

.page-payment-methods__cta-button--secondary:hover {
  background: #2B73F6;
  box-shadow: 0 0 15px rgba(79, 168, 255, 0.5);
}

/* Responsive adjustments */
@media (max-width: 849px) {
  .page-payment-methods__hero-section {
    padding: 30px 15px;
    gap: 20px;
  }

  .page-payment-methods__hero-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }

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

  .page-payment-methods__methods-detail-section .page-payment-methods__method-card,
  .page-payment-methods__methods-detail-section .page-payment-methods__method-card--reverse {
    flex-direction: column;
    padding: 20px;
    gap: 20px;
  }

  .page-payment-methods__method-title {
    font-size: 1.5rem;
    text-align: center;
  }

  .page-payment-methods__method-text {
    text-align: center;
  }

  .page-payment-methods__method-features {
    align-self: flex-start;
  }

  .page-payment-methods__security-content {
    flex-direction: column;
    padding: 30px;
    gap: 30px;
  }

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

  .page-payment-methods__cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .page-payment-methods__cta-button {
    width: 80%;
    max-width: 300px;
  }
}

@media (max-width: 549px) {
  .page-payment-methods__container {
    padding: 15px;
  }

  .page-payment-methods__hero-section {
    padding: 20px 10px;
  }

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

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

  .page-payment-methods__section-title {
    font-size: clamp(1.3rem, 7vw, 1.8rem);
  }

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

  .page-payment-methods__guide-list li,
  .page-payment-methods__faq-item {
    padding: 15px;
  }

  .page-payment-methods__faq-question {
    font-size: 1rem;
  }

  .page-payment-methods__faq-answer {
    font-size: 0.85rem;
  }

  .page-payment-methods__cta-button {
    width: 90%;
  }
}

/* Ensure images in content area are not smaller than 200px */
.page-payment-methods__method-image,
.page-payment-methods__security-image {
  min-width: 200px;
  min-height: 200px;
}

@media (max-width: 768px) {
  .page-payment-methods__method-image,
  .page-payment-methods__security-image {
    max-width: 100%;
    height: auto;
  }
}