.page-payment-methods {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Màu chữ nhạt trên nền tối */
  background-color: #0A192F; /* Nền tối chủ đạo */
  line-height: 1.6;
}

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

.page-payment-methods section {
  padding: 60px 0;
  text-align: center;
}

.page-payment-methods h1, .page-payment-methods h2, .page-payment-methods h3, .page-payment-methods h4 {
  color: #FFD700; /* Màu vàng làm điểm nhấn cho tiêu đề */
  margin-bottom: 20px;
  font-weight: bold;
}

.page-payment-methods h1 {
  font-size: 2.8em;
  margin-bottom: 25px;
}

.page-payment-methods h2 {
  font-size: 2.2em;
  margin-bottom: 30px;
}

.page-payment-methods h3 {
  font-size: 1.8em;
  margin-bottom: 15px;
}

.page-payment-methods p {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #B0B0B0;
}

.page-payment-methods ul, .page-payment-methods ol {
  list-style-position: inside;
  text-align: left;
  margin: 0 auto 20px;
  max-width: 800px;
  padding-left: 20px;
  color: #B0B0B0;
}

.page-payment-methods ul li, .page-payment-methods ol li {
  margin-bottom: 10px;
  font-size: 1em;
}

.page-payment-methods .cta-button {
  display: inline-block;
  background-color: #FFD700; /* Nút CTA màu vàng */
  color: #0A192F; /* Chữ tối trên nền vàng */
  padding: 15px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin-top: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.page-payment-methods .cta-button:hover {
  background-color: #E6C200;
  transform: translateY(-3px);
}

/* Hero Section */
.page-payment-methods .hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  background: #0A192F;
}

.page-payment-methods .hero-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-payment-methods .hero-image {
  width: 100%;
  margin-bottom: 30px;
  max-width: 900px; /* Adjust max-width for hero image */
}

.page-payment-methods .hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-payment-methods .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-payment-methods .hero-content h1 {
  color: #FFD700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-payment-methods .hero-content p {
  color: #E0E0E0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Section Methods */
.page-payment-methods .section-methods {
  background-color: #1A2A40;
  padding: 80px 0;
}

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

.page-payment-methods .method-card {
  background-color: #0A192F;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

.page-payment-methods .method-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-payment-methods .method-card h3 {
  color: #FFD700;
  font-size: 1.5em;
  margin-top: 0;
  margin-bottom: 15px;
}

.page-payment-methods .method-card h4 {
  color: #E0E0E0;
  font-size: 1.2em;
  margin-top: 20px;
  margin-bottom: 10px;
}

.page-payment-methods .method-card ul {
  padding-left: 25px;
  margin-bottom: 0;
}

.page-payment-methods .method-card p, .page-payment-methods .method-card li {
  color: #B0B0B0;
}

/* Section Withdraw */
.page-payment-methods .section-withdraw {
  padding: 80px 0;
  background-color: #0A192F;
}

.page-payment-methods .withdraw-content {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.page-payment-methods .withdraw-steps {
  flex: 1;
  min-width: 300px;
  text-align: left;
}

.page-payment-methods .withdraw-steps ol {
  list-style-type: decimal;
  padding-left: 20px;
  margin-left: 0;
}

.page-payment-methods .withdraw-steps ol li {
  margin-bottom: 15px;
  color: #B0B0B0;
}

.page-payment-methods .withdraw-steps h3 {
  color: #FFD700;
}

.page-payment-methods .withdraw-image {
  flex: 1;
  min-width: 400px;
  max-width: 600px;
}

.page-payment-methods .withdraw-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-payment-methods .image-full-width {
  margin-top: 40px;
  margin-bottom: 20px;
}

.page-payment-methods .image-full-width img {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Section Tips & Why Choose */
.page-payment-methods .section-tips, .page-payment-methods .section-why-choose {
  background-color: #1A2A40;
  padding: 80px 0;
}

.page-payment-methods .section-tips ul, .page-payment-methods .section-why-choose ul {
  max-width: 900px;
  text-align: left;
  padding-left: 0;
  list-style: none;
}

.page-payment-methods .section-tips ul li, .page-payment-methods .section-why-choose ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #E0E0E0;
}

.page-payment-methods .section-tips ul li::before, .page-payment-methods .section-why-choose ul li::before {
  content: '✓';
  color: #FFD700;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

/* FAQ Section */
.page-payment-methods .section-faq {
  background-color: #0A192F;
  padding: 80px 0;
}

.page-payment-methods .faq-list {
  max-width: 900px;
  margin: 40px auto 0;
  text-align: left;
}

.page-payment-methods .faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  background-color: #1A2A40;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-payment-methods .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  background-color: #1A2A40;
  cursor: pointer;
  transition: background-color 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-payment-methods .faq-question:hover {
  background-color: #2A3A50;
}

.page-payment-methods .faq-question h3 {
  color: #FFD700;
  margin: 0;
  font-size: 1.3em;
  flex-grow: 1;
}

.page-payment-methods .faq-toggle {
  font-size: 1.8em;
  font-weight: bold;
  color: #FFD700;
  transition: transform 0.3s ease;
}

.page-payment-methods .faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.page-payment-methods .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 25px;
  background-color: #0A192F;
  color: #B0B0B0;
}

.page-payment-methods .faq-item.active .faq-answer {
  max-height: 500px; /* Đủ cao để chứa nội dung */
  padding: 20px 25px;
}

.page-payment-methods .faq-answer p {
  margin: 0;
  color: #B0B0B0;
}

/* Section Conclusion */
.page-payment-methods .section-conclusion {
  background-color: #1A2A40;
  padding: 80px 0;
}

.page-payment-methods .section-conclusion p {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-payment-methods h1 {
    font-size: 2.4em;
  }
  .page-payment-methods h2 {
    font-size: 1.8em;
  }
  .page-payment-methods h3 {
    font-size: 1.4em;
  }
  .page-payment-methods p {
    font-size: 1em;
  }
  .page-payment-methods .withdraw-content {
    flex-direction: column;
  }
  .page-payment-methods .withdraw-image {
    order: -1; /* Image first on mobile */
    max-width: 100%;
  }
  .page-payment-methods .withdraw-steps {
    min-width: unset;
    width: 100%;
  }
  .page-payment-methods .method-card-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-payment-methods section {
    padding: 40px 0;
  }
  .page-payment-methods .hero-section {
    padding: 60px 15px;
  }
  .page-payment-methods .hero-image img {
    border-radius: 8px;
  }
  .page-payment-methods h1 {
    font-size: 2em;
  }
  .page-payment-methods h2 {
    font-size: 1.6em;
  }
  .page-payment-methods .cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-payment-methods .method-card {
    padding: 20px;
  }
  .page-payment-methods .method-card img {
    height: 200px;
  }
  .page-payment-methods .faq-question {
    padding: 15px 20px;
  }
  .page-payment-methods .faq-question h3 {
    font-size: 1.1em;
  }
  .page-payment-methods .faq-toggle {
    font-size: 1.5em;
  }
  .page-payment-methods .faq-answer {
    padding: 15px 20px;
  }
  .page-payment-methods .section-tips ul li, .page-payment-methods .section-why-choose ul li {
    font-size: 0.95em;
  }
}

@media (max-width: 480px) {
  .page-payment-methods h1 {
    font-size: 1.8em;
  }
  .page-payment-methods h2 {
    font-size: 1.4em;
  }
  .page-payment-methods h3 {
    font-size: 1.2em;
  }
  .page-payment-methods p {
    font-size: 0.95em;
  }
  .page-payment-methods .faq-question h3 {
    font-size: 1em;
  }
}