.page-payment-methods {
  font-family: 'Arial', sans-serif;
  color: #333333;
  line-height: 1.6;
  background-color: #f4f7f6;
}

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

.page-payment-methods h1, .page-payment-methods h2, .page-payment-methods h3 {
  color: #0A2E5B;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-payment-methods h1 {
  font-size: 2.8em;
  text-align: center;
  color: #FFD700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-payment-methods h2 {
  font-size: 2.2em;
  text-align: center;
  margin-top: 40px;
  margin-bottom: 30px;
}

.page-payment-methods h3 {
  font-size: 1.6em;
  margin-top: 25px;
  margin-bottom: 15px;
  color: #0A2E5B;
}

.page-payment-methods p {
  margin-bottom: 15px;
  color: #555555;
}

.page-payment-methods ol, .page-payment-methods ul {
  margin-bottom: 15px;
  padding-left: 25px;
}

.page-payment-methods ol li, .page-payment-methods ul li {
  margin-bottom: 8px;
  color: #555555;
}

/* 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: 60px 20px;
  background: linear-gradient(135deg, #0A2E5B 0%, #1A4F8A 100%); /* Dark blue gradient */
  color: #ffffff;
}

.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: 800px; /* Adjust size for content 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.3);
}

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

.page-payment-methods .hero-content h1 {
  color: #FFD700;
  margin-bottom: 20px;
  font-size: 3.2em;
}

.page-payment-methods .hero-content p {
  color: #e0e0e0;
  font-size: 1.1em;
  max-width: 800px;
  margin: 0 auto 30px auto;
}

.page-payment-methods .cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: #FFD700; /* Gold */
  color: #0A2E5B; /* Dark blue */
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.2em;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-payment-methods .cta-button:hover {
  background: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Info Section */
.page-payment-methods .info-section {
  padding: 60px 0;
  background-color: #ffffff;
}

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

.page-payment-methods .feature-item {
  background: #f9f9f9;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-payment-methods .feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-payment-methods .feature-item img {
  width: 120px;
  height: 120px;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

.page-payment-methods .feature-item h3 {
  color: #0A2E5B;
  font-size: 1.4em;
  margin-bottom: 10px;
}

.page-payment-methods .feature-item p {
  color: #666666;
  font-size: 1em;
}

/* Deposit & Withdraw Sections */
.page-payment-methods .deposit-section, .page-payment-methods .withdraw-section, .page-payment-methods .important-notes-section, .page-payment-methods .troubleshooting-section, .page-payment-methods .faq-section, .page-payment-methods .cta-final-section {
  padding: 60px 0;
  border-top: 1px solid #e0e0e0;
}

.page-payment-methods .deposit-section {
  background-color: #e8f0f8;
}

.page-payment-methods .withdraw-section {
  background-color: #fcfcfc;
}

.page-payment-methods .payment-method-item {
  background: #ffffff;
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.page-payment-methods .payment-method-item img {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  object-fit: cover;
}

.page-payment-methods .payment-method-item h3 {
  color: #0A2E5B;
  font-size: 1.8em;
  margin-bottom: 15px;
  text-align: left;
}

.page-payment-methods .payment-method-item h4 {
  color: #1A4F8A;
  font-size: 1.3em;
  margin-top: 20px;
  margin-bottom: 10px;
}

.page-payment-methods .text-center {
  text-align: center;
  margin-top: 40px;
}

/* Important Notes Section */
.page-payment-methods .important-notes-section {
  background-color: #f4f7f6;
}

.page-payment-methods .note-item {
  background: #ffffff;
  border-left: 5px solid #FFD700;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
}

.page-payment-methods .note-item h3 {
  color: #0A2E5B;
  font-size: 1.5em;
  margin-top: 0;
}

.page-payment-methods .note-item img {
  float: right;
  width: 150px; /* Minimum size for content images */
  height: auto;
  margin-left: 20px;
  border-radius: 8px;
  object-fit: cover;
}

.page-payment-methods .note-item p {
  margin-bottom: 0;
  color: #444444;
}

/* Troubleshooting Section */
.page-payment-methods .troubleshooting-section {
  background-color: #e8f0f8;
}

.page-payment-methods .troubleshoot-item {
  background: #ffffff;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
}

.page-payment-methods .troubleshoot-item h3 {
  color: #0A2E5B;
  font-size: 1.5em;
  margin-top: 0;
}

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

.page-payment-methods .faq-item {
  margin-bottom: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
}

.page-payment-methods .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #fdfdfd;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.page-payment-methods .faq-question:hover {
  background: #f5f5f5;
}

.page-payment-methods .faq-question h3 {
  margin: 0;
  font-size: 1.25em;
  color: #0A2E5B;
}

.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);
  color: #0A2E5B;
}

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

.page-payment-methods .faq-item.active .faq-answer {
  max-height: 500px; /* Adjust as needed for content */
  padding: 20px 25px;
  border-top: 1px solid #e0e0e0;
}

/* Final CTA Section */
.page-payment-methods .cta-final-section {
  background: linear-gradient(90deg, #0A2E5B, #1A4F8A);
  color: #ffffff;
  text-align: center;
  padding: 80px 20px;
  border-top: none;
}

.page-payment-methods .cta-final-section h2 {
  color: #FFD700;
  font-size: 2.5em;
  margin-bottom: 25px;
}

.page-payment-methods .cta-final-section p {
  font-size: 1.1em;
  max-width: 800px;
  margin: 0 auto 35px auto;
  color: #e0e0e0;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-payment-methods h1 {
    font-size: 2.5em;
  }
  .page-payment-methods h2 {
    font-size: 1.8em;
  }
  .page-payment-methods h3 {
    font-size: 1.4em;
  }
  .page-payment-methods .feature-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  .page-payment-methods .note-item img {
    float: none;
    margin: 0 auto 20px auto;
    display: block;
  }
}

@media (max-width: 768px) {
  .page-payment-methods .hero-section {
    padding: 40px 15px;
  }
  .page-payment-methods .hero-content h1 {
    font-size: 2.2em;
  }
  .page-payment-methods .hero-content p {
    font-size: 1em;
  }
  .page-payment-methods .cta-button {
    padding: 12px 30px;
    font-size: 1em;
  }
  .page-payment-methods .feature-item {
    padding: 20px;
  }
  .page-payment-methods .payment-method-item {
    padding: 20px;
  }
  .page-payment-methods .payment-method-item h3 {
    font-size: 1.6em;
  }
  .page-payment-methods .payment-method-item h4 {
    font-size: 1.2em;
  }
  .page-payment-methods .note-item {
    padding: 20px;
  }
  .page-payment-methods .note-item h3 {
    font-size: 1.3em;
  }
  .page-payment-methods .troubleshoot-item {
    padding: 20px;
  }
  .page-payment-methods .troubleshoot-item h3 {
    font-size: 1.3em;
  }
  .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-item.active .faq-answer {
    padding: 15px 20px;
  }
  .page-payment-methods .cta-final-section h2 {
    font-size: 2em;
  }
  .page-payment-methods .cta-final-section p {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-payment-methods h1 {
    font-size: 2em;
  }
  .page-payment-methods h2 {
    font-size: 1.6em;
  }
  .page-payment-methods .hero-image {
    margin-bottom: 20px;
  }
  .page-payment-methods .feature-grid {
    grid-template-columns: 1fr;
  }
  .page-payment-methods .feature-item img {
    width: 100px;
    height: 100px;
  }
  .page-payment-methods .payment-method-item h3 {
    font-size: 1.4em;
  }
  .page-payment-methods .payment-method-item h4 {
    font-size: 1.1em;
  }
  .page-payment-methods .faq-question h3 {
    font-size: 1em;
  }
  .page-payment-methods .faq-toggle {
    font-size: 1.3em;
  }
  .page-payment-methods .cta-final-section h2 {
    font-size: 1.8em;
  }
}