/* style/payment-methods.css */

/* Base styles for the page, ensuring text color contrasts with dark body background */
.page-payment-methods {
  font-family: 'Arial', sans-serif;
  color: #F2FFF6; /* Text Main */
  line-height: 1.6;
  background-color: #08160F; /* Background */
}

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

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

.page-payment-methods__section-title {
  font-size: 2.8em;
  color: #F2FFF6; /* Text Main */
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

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

.page-payment-methods__sub-title {
  font-size: 1.8em;
  color: #F2FFF6; /* Text Main */
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-payment-methods__text-block p {
  margin-bottom: 15px;
  color: #F2FFF6;
}

/* Hero Section */
.page-payment-methods__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 60px;
  overflow: hidden;
}

.page-payment-methods__hero-image-wrapper {
  width: 100%;
  max-height: 700px; /* Limit height for aesthetic */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-payment-methods__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.page-payment-methods__hero-content {
  max-width: 1000px;
  margin-top: 40px;
  text-align: center;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-payment-methods__main-title {
  font-size: clamp(2.5em, 5vw, 3.8em);
  color: #F2C14E; /* Gold */
  margin-bottom: 20px;
  font-weight: 800;
  line-height: 1.1;
}

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

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

.page-payment-methods__cta-buttons--center {
  margin-top: 40px;
}

.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.1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

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

.page-payment-methods__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(34, 199, 104, 0.6);
}

.page-payment-methods__btn-secondary {
  background-color: transparent;
  color: #2AD16F; /* Button color secondary */
  border: 2px solid #2AD16F; /* Border color */
}

.page-payment-methods__btn-secondary:hover {
  background-color: #2AD16F;
  color: #F2FFF6; /* Text Main */
  transform: translateY(-2px);
}

/* Introduction Section */
.page-payment-methods__introduction .page-payment-methods__content-wrapper {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.page-payment-methods__introduction .page-payment-methods__text-block {
  flex: 2;
}

.page-payment-methods__introduction .page-payment-methods__image-block {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-payment-methods__introduction .page-payment-methods__content-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

/* Payment Options Section */
.page-payment-methods__payment-options .page-payment-methods__cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-payment-methods__card {
  background-color: #11271B; /* Card BG */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #2E7A4E; /* Border */
}

.page-payment-methods__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}

.page-payment-methods__card-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-payment-methods__card-title {
  font-size: 1.5em;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 10px;
  font-weight: bold;
}

.page-payment-methods__card-text {
  color: #A7D9B8; /* Text Secondary */
  font-size: 1em;
}

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

.page-payment-methods__guide-steps--reverse {
  flex-direction: column-reverse;
}

.page-payment-methods__step-item {
  background-color: #11271B; /* Card BG */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  border: 1px solid #2E7A4E; /* Border */
}

.page-payment-methods__step-number {
  font-size: 2.5em;
  font-weight: bold;
  color: #2AD16F; /* Deep Green */
  margin-bottom: 15px;
  text-align: center;
  background: #0A4B2C; /* Deep Green */
  border-radius: 50%;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  box-shadow: inset 0 0 10px rgba(87, 227, 141, 0.5);
}

.page-payment-methods__step-title {
  font-size: 1.4em;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 10px;
  font-weight: bold;
  text-align: center;
}

.page-payment-methods__step-text {
  color: #A7D9B8; /* Text Secondary */
  font-size: 1em;
  text-align: center;
}

/* Security Section */
.page-payment-methods__security-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-payment-methods__feature-item {
  background-color: #11271B; /* Card BG */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  border: 1px solid #2E7A4E; /* Border */
}

.page-payment-methods__feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-payment-methods__feature-title {
  font-size: 1.4em;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 10px;
  font-weight: bold;
}

.page-payment-methods__feature-text {
  color: #A7D9B8; /* Text Secondary */
  font-size: 1em;
}

/* FAQ Section */
.page-payment-methods__faq-list {
  margin-top: 40px;
}

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

.page-payment-methods__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: 600;
  color: #F2FFF6; /* Text Main */
  background-color: #0A4B2C; /* Deep Green */
  transition: background-color 0.3s ease;
  list-style: none;
}

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

.page-payment-methods__faq-question:hover {
  background-color: #115D39;
}

.page-payment-methods__faq-qtext {
  flex-grow: 1;
}

.page-payment-methods__faq-toggle {
  font-size: 1.5em;
  font-weight: bold;
  margin-left: 20px;
  color: #F2FFF6;
}

.page-payment-methods__faq-answer {
  padding: 20px 30px;
  font-size: 1.05em;
  color: #A7D9B8; /* Text Secondary */
  background-color: #11271B; /* Card BG */
}

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

/* Conclusion Section */
.page-payment-methods__conclusion .page-payment-methods__section-description {
  margin-bottom: 30px;
}

/* Global image responsiveness */
.page-payment-methods img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-payment-methods__section-title {
    font-size: 2.2em;
  }

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

@media (max-width: 768px) {
  .page-payment-methods {
    font-size: 16px;
    line-height: 1.6;
  }

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

  .page-payment-methods__hero-content {
    margin-top: 30px;
    padding: 0 15px;
  }

  .page-payment-methods__main-title {
    font-size: clamp(2em, 8vw, 2.8em);
  }

  .page-payment-methods__hero-description {
    font-size: 1em;
  }

  .page-payment-methods__section {
    padding: 40px 0;
  }

  .page-payment-methods__section-title {
    font-size: 2em;
    padding: 0 15px;
  }

  .page-payment-methods__section-description {
    padding: 0 15px;
    font-size: 0.95em;
  }

  .page-payment-methods__introduction .page-payment-methods__content-wrapper {
    flex-direction: column;
    gap: 30px;
  }

  .page-payment-methods__introduction .page-payment-methods__image-block {
    min-width: unset;
    width: 100%;
    padding: 0 15px;
  }

  .page-payment-methods__cards-grid,
  .page-payment-methods__guide-steps,
  .page-payment-methods__security-features {
    grid-template-columns: 1fr;
    padding: 0 15px;
  }

  .page-payment-methods__card,
  .page-payment-methods__step-item,
  .page-payment-methods__feature-item {
    padding: 25px;
  }

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

  .page-payment-methods__btn-primary,
  .page-payment-methods__btn-secondary {
    width: 100%;
    max-width: 100% !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-payment-methods__faq-question {
    padding: 15px 20px;
    font-size: 1.1em;
  }

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

  /* Mobile specific overrides for images, videos, and buttons */
  .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__hero-section,
  .page-payment-methods__image-block,
  .page-payment-methods__text-block,
  .page-payment-methods__cta-buttons,
  .page-payment-methods__button-group,
  .page-payment-methods__btn-container,
  .page-payment-methods__guide-steps,
  .page-payment-methods__security-features,
  .page-payment-methods__faq-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    /* padding-left and padding-right handled by individual sections/components as needed */
    overflow-x: hidden !important; /* Prevent horizontal scroll */
  }

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

/* Ensure content area images are not too small */
.page-payment-methods__content-image,
.page-payment-methods__card-icon,
.page-payment-methods__feature-icon {
  min-width: 80px; /* Icons can be smaller than 200px, but not tiny */
  min-height: 80px;
}

.page-payment-methods__content-image {
  min-width: 200px;
  min-height: 200px;
}

.page-payment-methods__introduction .page-payment-methods__content-image {
  width: 100%; /* Ensure it uses full available width in its container */
  height: auto;
  object-fit: cover;
}