.page-payment-methods {
  font-family: 'Arial', sans-serif;
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
  line-height: 1.6;
}

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

.page-payment-methods__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 80px;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(180deg, #08160F 0%, #11A84E 100%);
}

.page-payment-methods__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}

.page-payment-methods__hero-image {
  width: 100%;
  height: auto;
  max-width: 1200px;
  margin-bottom: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  object-fit: cover;
}

.page-payment-methods__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.page-payment-methods__hero-description {
  font-size: 1.2rem;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-payment-methods__btn-primary,
.page-payment-methods__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  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;
  white-space: normal;
  word-wrap: break-word;
}

.page-payment-methods__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
  color: #F2FFF6; /* Text Main */
  border: none;
  box-shadow: 0 4px 15px rgba(34, 199, 104, 0.4);
}

.page-payment-methods__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(34, 199, 104, 0.6);
}

.page-payment-methods__btn-secondary {
  background: transparent;
  color: #57E38D; /* Glow */
  border: 2px solid #57E38D; /* Glow */
}

.page-payment-methods__btn-secondary:hover {
  background: rgba(87, 227, 141, 0.1);
  transform: translateY(-3px);
}

.page-payment-methods__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: #F2FFF6; /* Text Main */
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.3;
}

.page-payment-methods__section-subtitle {
  font-size: 1.1rem;
  color: #A7D9B8; /* Text Secondary */
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-payment-methods__dark-section {
  background-color: #0A4B2C; /* Deep Green */
  padding: 60px 0;
}

.page-payment-methods__introduction-section {
  padding: 60px 0;
}

.page-payment-methods__text-block {
  font-size: 1rem;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
  text-align: justify;
}

.page-payment-methods__text-block:last-child {
  margin-bottom: 0;
}

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

.page-payment-methods__method-card {
  background-color: #11271B; /* Card B G */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  color: #F2FFF6;
  border: 1px solid #2E7A4E; /* Border */
}

.page-payment-methods__method-card:hover {
  transform: translateY(-5px);
}

.page-payment-methods__card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-bottom: 1px solid #2E7A4E; /* Border */
}

.page-payment-methods__card-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #F2FFF6; /* Text Main */
  padding: 20px 20px 10px;
}

.page-payment-methods__card-description {
  font-size: 0.95rem;
  color: #A7D9B8; /* Text Secondary */
  padding: 0 20px 15px;
  flex-grow: 1;
}

.page-payment-methods__card-list {
  list-style: none;
  padding: 0 20px 20px;
  margin: 0;
}

.page-payment-methods__card-list li {
  font-size: 0.9rem;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 8px;
  position: relative;
  padding-left: 20px;
}

.page-payment-methods__card-list li::before {
  content: '•';
  color: #57E38D; /* Glow */
  position: absolute;
  left: 0;
  top: 0;
}

.page-payment-methods__btn-text {
  display: inline-block;
  color: #57E38D; /* Glow */
  text-decoration: none;
  font-weight: 500;
  padding: 15px 20px;
  margin-top: auto; /* Push to bottom */
  border-top: 1px solid #2E7A4E; /* Border */
  transition: color 0.3s ease, background-color 0.3s ease;
}

.page-payment-methods__btn-text:hover {
  color: #F2FFF6; /* Text Main */
  background-color: rgba(87, 227, 141, 0.1);
}

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

.page-payment-methods__step-item {
  background-color: #11271B; /* Card B G */
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #2E7A4E; /* Border */
}

.page-payment-methods__step-image {
  width: 100%;
  height: auto;
  max-width: 400px;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-payment-methods__step-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
}

.page-payment-methods__step-description {
  font-size: 0.95rem;
  color: #A7D9B8; /* Text Secondary */
}

.page-payment-methods__cta-center {
  text-align: center;
  margin-top: 50px;
}

.page-payment-methods__security-section {
  padding: 80px 0;
}

.page-payment-methods__security-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.page-payment-methods__security-text {
  flex: 1;
  min-width: 300px;
}

.page-payment-methods__security-image {
  flex: 1;
  min-width: 300px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  object-fit: cover;
}

.page-payment-methods__tips-section {
  padding: 60px 0;
}

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

.page-payment-methods__tips-list li {
  background-color: #11271B; /* Card B G */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 8px;
  padding: 18px 25px;
  margin-bottom: 15px;
  font-size: 1.05rem;
  color: #F2FFF6; /* Text Main */
  display: flex;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-payment-methods__list-icon {
  color: #57E38D; /* Glow */
  font-size: 1.4rem;
  margin-right: 15px;
  font-weight: bold;
}

.page-payment-methods__faq-section {
  padding: 80px 0;
}

.page-payment-methods__faq-list {
  max-width: 900px;
  margin: 40px auto 0;
}

.page-payment-methods__faq-item {
  background-color: #11271B; /* Card B G */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #F2FFF6;
}

.page-payment-methods__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.15rem;
  font-weight: 600;
  cursor: pointer;
  color: #F2FFF6; /* Text Main */
  background-color: #0A4B2C; /* Deep Green */
  transition: background-color 0.3s ease;
}

.page-payment-methods__faq-question:hover {
  background-color: #11A84E;
}

.page-payment-methods__faq-toggle {
  font-size: 1.8rem;
  line-height: 1;
  color: #57E38D; /* Glow */
  transition: transform 0.3s ease;
}

.page-payment-methods__faq-item[open] .page-payment-methods__faq-toggle {
  transform: rotate(45deg);
}

.page-payment-methods__faq-answer {
  padding: 15px 25px 20px;
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
  border-top: 1px solid #2E7A4E; /* Border */
}

.page-payment-methods__faq-item summary {
  list-style: none;
}

.page-payment-methods__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-payment-methods__cta-section {
  padding: 80px 0;
  text-align: center;
  background: linear-gradient(0deg, #08160F 0%, #0A4B2C 100%);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-payment-methods__hero-section {
    padding-bottom: 60px;
  }

  .page-payment-methods__main-title {
    font-size: clamp(2rem, 5vw, 3rem);
  }

  .page-payment-methods__section-title {
    font-size: clamp(1.6rem, 4vw, 2.5rem);
  }

  .page-payment-methods__security-content {
    flex-direction: column;
  }

  .page-payment-methods__security-text,
  .page-payment-methods__security-image {
    flex: none;
    width: 100%;
  }
}

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

  .page-payment-methods__hero-section {
    padding-bottom: 40px;
  }

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

  .page-payment-methods__cta-group {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }

  .page-payment-methods__btn-primary,
  .page-payment-methods__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1rem;
  }

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

  .page-payment-methods__section-subtitle {
    font-size: 1rem;
  }

  .page-payment-methods__dark-section,
  .page-payment-methods__introduction-section,
  .page-payment-methods__tips-section,
  .page-payment-methods__faq-section,
  .page-payment-methods__cta-section {
    padding: 40px 0;
  }

  .page-payment-methods__cards-grid,
  .page-payment-methods__guide-steps {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-payment-methods__method-card,
  .page-payment-methods__step-item {
    padding: 20px;
  }

  .page-payment-methods__card-title,
  .page-payment-methods__step-title {
    font-size: 1.3rem;
  }

  .page-payment-methods__card-description,
  .page-payment-methods__step-description {
    font-size: 0.9rem;
  }

  .page-payment-methods__tips-list li,
  .page-payment-methods__faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }

  .page-payment-methods__faq-answer {
    font-size: 0.95rem;
    padding: 10px 20px 15px;
  }

  /* Mobile image responsiveness */
  .page-payment-methods img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-payment-methods__section,
  .page-payment-methods__card,
  .page-payment-methods__container,
  .page-payment-methods__cta-group,
  .page-payment-methods__guide-steps,
  .page-payment-methods__security-content {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden !important;
  }

  .page-payment-methods__hero-section {
    padding-top: 10px !important;
  }
}