:root {
  --primary-color: #11A84E;
  --secondary-color: #22C768;
  --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --card-bg: #11271B;
  --bg-color: #08160F;
  --text-main: #F2FFF6;
  --text-secondary: #A7D9B8;
  --border-color: #2E7A4E;
  --glow-color: #57E38D;
  --gold-color: #F2C14E;
  --divider-color: #1E3A2A;
  --deep-green: #0A4B2C;
  --light-bg: #ffffff;
}

.page-payment-methods {
  background-color: var(--bg-color);
  color: var(--text-main);
}

.page-payment-methods__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 20px 60px;
  text-align: center;
  overflow: hidden;
  min-height: 500px; /* Ensure hero section has a minimum height */
}

.page-payment-methods__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  min-height: 100%; /* Cover the entire section */
}

.page-payment-methods__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin-top: 100px;
  color: var(--text-main);
}

.page-payment-methods__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--text-main);
}

.page-payment-methods__description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: var(--text-secondary);
}

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

.page-payment-methods__btn-primary,
.page-payment-methods__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-payment-methods__btn-primary {
  background: var(--button-gradient);
  color: #ffffff;
  border: 2px solid transparent;
}

.page-payment-methods__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(42, 209, 111, 0.4);
}

.page-payment-methods__btn-secondary {
  background: transparent;
  color: var(--text-main);
  border: 2px solid var(--border-color);
}

.page-payment-methods__btn-secondary:hover {
  background: rgba(46, 122, 78, 0.2);
  transform: translateY(-3px);
}

.page-payment-methods__introduction-section,
.page-payment-methods__deposit-section,
.page-payment-methods__withdrawal-section,
.page-payment-methods__security-section,
.page-payment-methods__tips-section,
.page-payment-methods__faq-section,
.page-payment-methods__cta-section {
  padding: 80px 20px;
  text-align: center;
}

.page-payment-methods__introduction-section,
.page-payment-methods__withdrawal-section,
.page-payment-methods__tips-section,
.page-payment-methods__cta-section {
  background-color: var(--light-bg);
  color: #333333;
}

.page-payment-methods__deposit-section,
.page-payment-methods__security-section,
.page-payment-methods__faq-section {
  background-color: var(--card-bg);
  color: var(--text-main);
}

.page-payment-methods__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 40px;
  line-height: 1.3;
  color: inherit;
}

.page-payment-methods__container {
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.page-payment-methods__container p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: inherit;
}

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

.page-payment-methods__card {
  background-color: var(--card-bg);
  color: var(--text-main);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid var(--divider-color);
  box-sizing: border-box;
}

.page-payment-methods__introduction-section .page-payment-methods__card,
.page-payment-methods__withdrawal-section .page-payment-methods__card,
.page-payment-methods__tips-section .page-payment-methods__card,
.page-payment-methods__cta-section .page-payment-methods__card {
  background-color: var(--light-bg);
  color: #333333;
  border: 1px solid #e0e0e0;
}

.page-payment-methods__introduction-section .page-payment-methods__card h3,
.page-payment-methods__introduction-section .page-payment-methods__card p,
.page-payment-methods__introduction-section .page-payment-methods__card li,
.page-payment-methods__withdrawal-section .page-payment-methods__card h3,
.page-payment-methods__withdrawal-section .page-payment-methods__card p,
.page-payment-methods__withdrawal-section .page-payment-methods__card li,
.page-payment-methods__tips-section .page-payment-methods__card h3,
.page-payment-methods__tips-section .page-payment-methods__card p,
.page-payment-methods__tips-section .page-payment-methods__card li,
.page-payment-methods__cta-section .page-payment-methods__card h3,
.page-payment-methods__cta-section .page-payment-methods__card p,
.page-payment-methods__cta-section .page-payment-methods__card li {
  color: #333333;
}

.page-payment-methods__method-icon {
  width: 400px;
  height: 300px;
  object-fit: cover;
  margin-bottom: 25px;
  border-radius: 8px;
  min-width: 200px; /* Ensure minimum size */
  min-height: 200px; /* Ensure minimum size */
}

.page-payment-methods__card-title {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: inherit;
}

.page-payment-methods__feature-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
  text-align: left;
  width: 100%;
  max-width: 250px;
}

.page-payment-methods__feature-list li {
  margin-bottom: 10px;
  font-size: 1rem;
  display: flex;
  align-items: center;
  color: var(--text-secondary);
}

.page-payment-methods__introduction-section .page-payment-methods__feature-list li,
.page-payment-methods__withdrawal-section .page-payment-methods__feature-list li,
.page-payment-methods__tips-section .page-payment-methods__feature-list li,
.page-payment-methods__cta-section .page-payment-methods__feature-list li {
  color: #666666; /* Darker secondary text for light backgrounds */
}

.page-payment-methods__feature-list li span {
  margin-right: 10px;
  color: var(--secondary-color);
  font-weight: 700;
}

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