:root {
  --primary-color: #003366;
  --secondary-color: #FFD700;
  --text-color-light: #f0f0f0;
  --text-color-dark: #333;
  --background-light: #ffffff;
  --background-dark: #f8f8f8;
}

.page-payment-methods {
  font-family: 'Arial', sans-serif;
  color: var(--text-color-dark);
  line-height: 1.6;
}

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

.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-color: var(--primary-color);
  color: var(--text-color-light);
}

.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;
}

.page-payment-methods .hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

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

.page-payment-methods .hero-content h1 {
  font-size: 3.5em;
  margin-bottom: 15px;
  color: var(--text-color-light);
}

.page-payment-methods .hero-content p {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-color-light);
}

.page-payment-methods .cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--secondary-color);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-payment-methods .cta-button:hover {
  background: #e6c200; /* Slightly darker gold */
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-payment-methods .secondary-cta {
  background: var(--background-light);
  color: var(--primary-color);
  border: 2px solid var(--secondary-color);
  margin-left: 20px;
}

.page-payment-methods .secondary-cta:hover {
  background: var(--secondary-color);
  color: var(--background-light);
}

.page-payment-methods h2 {
  font-size: 2.5em;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 40px;
  padding-top: 40px;
}

.page-payment-methods h3 {
  font-size: 1.8em;
  color: var(--primary-color);
  margin-bottom: 15px;
}

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

.page-payment-methods .intro-section,
.page-payment-methods .principles-section,
.page-payment-methods .methods-deposit-section,
.page-payment-methods .deposit-guide-section,
.page-payment-methods .methods-withdrawal-section,
.page-payment-methods .withdrawal-guide-section,
.page-payment-methods .important-notes-section,
.page-payment-methods .faq-section,
.page-payment-methods .contact-cta-section {
  padding: 60px 0;
}

.page-payment-methods .intro-section {
  background-color: var(--background-dark);
}

.page-payment-methods .principles-section {
  background-color: var(--background-light);
}

.page-payment-methods .principles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  text-align: center;
}

.page-payment-methods .principle-item {
  background: var(--background-light);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 51, 102, 0.1);
  transition: transform 0.3s ease;
}

.page-payment-methods .principle-item:hover {
  transform: translateY(-5px);
}

.page-payment-methods .principle-icon {
  width: 120px;
  height: 120px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-payment-methods .methods-deposit-section,
.page-payment-methods .methods-withdrawal-section {
  background-color: #f0f5fa;
}

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

.page-payment-methods .method-card {
  background: var(--background-light);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 51, 102, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-payment-methods .method-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 51, 102, 0.15);
}

.page-payment-methods .method-icon {
  width: 150px;
  height: 150px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-payment-methods .method-card h3 {
  color: var(--primary-color);
  font-size: 1.6em;
  margin-bottom: 10px;
}

.page-payment-methods .method-card ul {
  list-style: none;
  padding: 0;
  margin-top: 15px;
}

.page-payment-methods .method-card ul li {
  background-color: #e6f0f7;
  margin-bottom: 8px;
  padding: 8px 15px;
  border-radius: 5px;
  font-size: 0.95em;
  color: #555;
}

.page-payment-methods .call-to-action-text {
  text-align: center;
  margin-top: 40px;
  font-size: 1.2em;
  font-weight: bold;
  color: var(--primary-color);
}

.page-payment-methods .call-to-action-text a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-payment-methods .call-to-action-text a:hover {
  color: #e6c200;
  text-decoration: underline;
}

.page-payment-methods .deposit-guide-section,
.page-payment-methods .withdrawal-guide-section {
  background-color: var(--background-light);
}

.page-payment-methods ol {
  counter-reset: item;
  list-style: none;
  padding: 0;
  margin-left: 20px;
}

.page-payment-methods ol li {
  counter-increment: item;
  margin-bottom: 25px;
  padding-left: 40px;
  position: relative;
  font-size: 1.1em;
}

.page-payment-methods ol li::before {
  content: counter(item);
  position: absolute;
  left: 0;
  top: 0;
  background-color: var(--primary-color);
  color: var(--text-color-light);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.1em;
}

.page-payment-methods .process-image {
  display: block;
  width: 100%;
  max-width: 800px;
  height: auto;
  margin: 40px auto 20px auto;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 51, 102, 0.1);
}

.page-payment-methods .important-notes-section {
  background-color: var(--background-dark);
}

.page-payment-methods .important-notes-section ul {
  list-style: none;
  padding: 0;
  margin-left: 20px;
}

.page-payment-methods .important-notes-section ul li {
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
  font-size: 1.1em;
}

.page-payment-methods .important-notes-section ul li::before {
  content: '✔️';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--secondary-color);
  font-size: 1.2em;
}

.page-payment-methods .faq-section {
  background-color: var(--background-light);
}

.page-payment-methods .faq-list {
  margin-top: 30px;
}

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

.page-payment-methods .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: var(--background-light);
  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: var(--primary-color);
}

.page-payment-methods .faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-color);
  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 20px;
  background: #f9f9f9;
  color: #555;
}

.page-payment-methods .faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height to contain content */
  padding: 20px;
}

.page-payment-methods .contact-cta-section {
  background-color: var(--primary-color);
  color: var(--text-color-light);
  text-align: center;
  padding: 80px 20px;
}