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

.page-payment-methods-guide__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 10px 0 60px 0; /* Small top padding, larger bottom for content */
  overflow: hidden;
  background-color: #08160F;
}

.page-payment-methods-guide__hero-image-wrapper {
  width: 100%;
  max-height: 600px; /* Limit height for hero image */
  overflow: hidden;
  position: relative;
}

.page-payment-methods-guide__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.7);
}

.page-payment-methods-guide__hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  padding: 20px;
  margin-top: -150px; /* Overlap slightly with image for visual flow */
  background: linear-gradient(180deg, rgba(8, 22, 15, 0.0) 0%, rgba(8, 22, 15, 0.9) 50%, #08160F 100%);
  border-radius: 10px;
  padding-top: 150px;
}

.page-payment-methods-guide__main-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: #F2C14E; /* Gold */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-payment-methods-guide__description {
  font-size: clamp(16px, 2vw, 20px);
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-payment-methods-guide__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button color */
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 18px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
}

.page-payment-methods-guide__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
}

.page-payment-methods-guide__cta-button--large {
  padding: 18px 40px;
  font-size: 20px;
}

.page-payment-methods-guide__section {
  padding: 60px 0;
  background-color: #08160F;
  border-bottom: 1px solid #1E3A2A; /* Divider */
}

.page-payment-methods-guide__section:last-of-type {
  border-bottom: none;
}

.page-payment-methods-guide__dark-section {
  background-color: #11271B; /* Card BG */
  color: #F2FFF6;
}

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

.page-payment-methods-guide__section-title {
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 700;
  color: #F2C14E; /* Gold */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 10px;
}

.page-payment-methods-guide__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #57E38D; /* Glow */
  border-radius: 2px;
}

.page-payment-methods-guide__sub-section-title {
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 600;
  color: #57E38D; /* Glow */
  margin-top: 40px;
  margin-bottom: 20px;
}

.page-payment-methods-guide__text-block {
  font-size: 17px;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
}

.page-payment-methods-guide__image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

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

.page-payment-methods-guide__method-card {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-payment-methods-guide__method-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.page-payment-methods-guide__card-title {
  font-size: 24px;
  font-weight: 700;
  color: #F2C14E; /* Gold */
  margin-bottom: 20px;
}

.page-payment-methods-guide__card-image {
  width: 100%;
  max-width: 350px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 25px;
  object-fit: cover;
}

.page-payment-methods-guide__card-content {
  text-align: left;
  width: 100%;
}

.page-payment-methods-guide__card-content p {
  font-size: 16px;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 15px;
}

.page-payment-methods-guide__card-subtitle {
  font-size: 19px;
  font-weight: 600;
  color: #57E38D; /* Glow */
  margin-top: 20px;
  margin-bottom: 10px;
}

.page-payment-methods-guide__ordered-list,
.page-payment-methods-guide__unordered-list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #A7D9B8; /* Text Secondary */
}

.page-payment-methods-guide__ordered-list li,
.page-payment-methods-guide__unordered-list li {
  margin-bottom: 10px;
  font-size: 16px;
}

.page-payment-methods-guide__ordered-list {
  list-style-type: decimal;
}

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

.page-payment-methods-guide__faq-item {
  background-color: #0A4B2C; /* Deep Green */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: background-color 0.3s ease;
}

.page-payment-methods-guide__faq-item[open] {
  background-color: #11A84E; /* Main color when open */
}

.page-payment-methods-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 18px;
  font-weight: 600;
  color: #F2FFF6; /* Text Main */
  cursor: pointer;
  list-style: none;
  transition: color 0.3s ease;
}

.page-payment-methods-guide__faq-question::-webkit-details-marker {
  display: none;
}

.page-payment-methods-guide__faq-question:hover {
  color: #F2C14E; /* Gold */
}

.page-payment-methods-guide__faq-toggle {
  font-size: 24px;
  line-height: 1;
  color: #57E38D; /* Glow */
  transition: transform 0.3s ease;
}

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

.page-payment-methods-guide__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 16px;
  color: #A7D9B8; /* Text Secondary */
  line-height: 1.7;
}

.page-payment-methods-guide__faq-answer p {
  margin-bottom: 10px;
}

.page-payment-methods-guide__faq-answer ul {
  margin-bottom: 10px;
}

.page-payment-methods-guide__conclusion {
  text-align: center;
  padding-bottom: 80px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-payment-methods-guide__hero-content {
    margin-top: -100px;
    padding-top: 100px;
  }
  .page-payment-methods-guide__method-card {
    padding: 25px;
  }
  .page-payment-methods-guide__card-title {
    font-size: 22px;
  }
}

@media (max-width: 768px) {
  .page-payment-methods-guide__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
  }
  .page-payment-methods-guide__hero-content {
    margin-top: -80px;
    padding-top: 80px;
    padding: 15px;
  }
  .page-payment-methods-guide__main-title {
    font-size: 28px;
    margin-bottom: 15px;
  }
  .page-payment-methods-guide__description {
    font-size: 16px;
    margin-bottom: 25px;
  }
  .page-payment-methods-guide__cta-button,
  .page-payment-methods-guide__cta-button--large {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 20px;
    font-size: 16px;
  }
  .page-payment-methods-guide__section {
    padding: 40px 0;
  }
  .page-payment-methods-guide__container {
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-payment-methods-guide__section-title {
    font-size: 26px;
    margin-bottom: 30px;
  }
  .page-payment-methods-guide__sub-section-title {
    font-size: 22px;
  }
  .page-payment-methods-guide__text-block,
  .page-payment-methods-guide__ordered-list li,
  .page-payment-methods-guide__unordered-list li,
  .page-payment-methods-guide__card-content p,
  .page-payment-methods-guide__faq-answer {
    font-size: 15px;
  }
  .page-payment-methods-guide__method-card-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-payment-methods-guide__method-card {
    padding: 20px;
  }
  .page-payment-methods-guide__card-title {
    font-size: 20px;
  }
  .page-payment-methods-guide__faq-question {
    font-size: 16px;
    padding: 15px 20px;
  }
  .page-payment-methods-guide img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-payment-methods-guide__image {
    margin: 20px auto;
  }
}

@media (max-width: 480px) {
  .page-payment-methods-guide__hero-content {
    margin-top: -60px;
    padding-top: 60px;
  }
  .page-payment-methods-guide__main-title {
    font-size: 24px;
  }
  .page-payment-methods-guide__section-title {
    font-size: 22px;
  }
  .page-payment-methods-guide__sub-section-title {
    font-size: 18px;
  }
  .page-payment-methods-guide__faq-question {
    font-size: 15px;
  }
}