.page-payment-methods {
  font-family: 'Arial', sans-serif;
  color: #333333;
  background-color: #f8f8f8;
  line-height: 1.6;
}

.page-payment-methods__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* body handles header offset, this is just small top padding */
  background: linear-gradient(135deg, #e0f2f7, #c1e0ed);
  border-bottom: 5px solid #26A9E0;
}

.page-payment-methods__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.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: 12px;
  object-fit: cover;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-payment-methods__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  padding: 0 20px;
}

.page-payment-methods__main-title {
  font-weight: 700;
  line-height: 1.2;
  color: #0d47a1;
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(28px, 4vw, 48px); /* Responsive font size */
}

.page-payment-methods__intro-description {
  font-size: 18px;
  color: #555555;
  max-width: 800px;
  margin: 0 auto 30px auto;
  line-height: 1.6;
}

.page-payment-methods__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: #26A9E0;
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-payment-methods__cta-button:hover {
  background: #1e87b7;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-payment-methods__cta-button--small {
  padding: 12px 30px;
  font-size: 16px;
  margin-top: 20px;
}

.page-payment-methods__section {
  padding: 60px 20px;
  background-color: #ffffff;
  margin-bottom: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-payment-methods__section:nth-of-type(even) {
  background-color: #f0faff;
}

.page-payment-methods__container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-payment-methods__section-title {
  font-size: 36px;
  color: #26A9E0;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
}

.page-payment-methods__introduction p,
.page-payment-methods__deposit-process p,
.page-payment-methods__withdrawal-process p,
.page-payment-methods__important-notes p,
.page-payment-methods__security p {
  font-size: 17px;
  line-height: 1.7;
  color: #444444;
  margin-bottom: 15px;
}

.page-payment-methods__introduction .highlight {
  color: #26A9E0;
  font-weight: bold;
}

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

.page-payment-methods__method-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e0e0e0;
}

.page-payment-methods__method-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.page-payment-methods__method-card img {
  max-width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 8px;
  width: 100%;
}

.page-payment-methods__card-title {
  font-size: 24px;
  color: #0d47a1;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-payment-methods__method-card p {
  font-size: 16px;
  color: #666666;
  line-height: 1.6;
}

.page-payment-methods__process-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  margin-bottom: 30px;
}

.page-payment-methods__process-list li {
  background-color: #e6f7ff;
  border-left: 5px solid #26A9E0;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  font-size: 17px;
  color: #333333;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-payment-methods__process-list li strong {
  color: #0d47a1;
  font-size: 18px;
}

.page-payment-methods__action-text {
  text-align: center;
  font-size: 18px;
  margin-top: 30px;
  color: #444444;
}

.page-payment-methods__action-text a {
  color: #26A9E0;
  text-decoration: none;
  font-weight: bold;
}

.page-payment-methods__action-text a:hover {
  text-decoration: underline;
}

.page-payment-methods__notes-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-payment-methods__notes-list li {
  background-color: #fff3e0;
  border-left: 5px solid #EA7C07;
  padding: 18px;
  margin-bottom: 12px;
  border-radius: 8px;
  font-size: 16px;
  color: #333333;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05);
}

.page-payment-methods__notes-list li strong {
  color: #EA7C07;
}

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

.page-payment-methods__feature-item {
  text-align: center;
  padding: 25px;
  background-color: #e6ffe6;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  border: 1px solid #c8e6c9;
}

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

.page-payment-methods__feature-item img {
  
  
  margin-bottom: 20px;
  object-fit: contain;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-payment-methods__feature-title {
  font-size: 22px;
  color: #0d47a1;
  margin-bottom: 10px;
  font-weight: 600;
}

.page-payment-methods__feature-item p {
  font-size: 16px;
  color: #666666;
  line-height: 1.6;
}

/* FAQ Styles */
.page-payment-methods__faq-section {
  background-color: #ffffff;
}

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

details.page-payment-methods__faq-item {
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid #e0e0e0;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

details.page-payment-methods__faq-item summary.page-payment-methods__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
  background-color: #f7f7f7;
}

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

details.page-payment-methods__faq-item summary.page-payment-methods__faq-question:hover {
  background: #f0f0f0;
}

.page-payment-methods__faq-qtext {
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #26A9E0;
}

.page-payment-methods__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  color: #0d47a1;
  flex-shrink: 0;
  margin-left: 15px;
  width: 30px;
  text-align: center;
}

details.page-payment-methods__faq-item .page-payment-methods__faq-answer {
  padding: 0 25px 20px;
  background: #f9f9f9;
  border-radius: 0 0 10px 10px;
}

details.page-payment-methods__faq-item .page-payment-methods__faq-answer p {
  font-size: 16px;
  color: #555555;
  line-height: 1.7;
  margin-top: 10px;
}

.page-payment-methods .highlight {
  color: #26A9E0;
  font-weight: bold;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-payment-methods__section-title {
    font-size: 32px;
  }
  .page-payment-methods__intro-description {
    font-size: 16px;
  }
  .page-payment-methods__method-card img {
    
  }
}

@media (max-width: 768px) {
  .page-payment-methods__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-payment-methods__hero-image {
    margin-bottom: 20px;
  }
  .page-payment-methods__hero-image img {
    border-radius: 8px;
  }
  .page-payment-methods__main-title {
    font-size: clamp(24px, 6vw, 40px);
    margin-bottom: 15px;
  }
  .page-payment-methods__intro-description {
    font-size: 15px;
    margin-bottom: 25px;
  }
  .page-payment-methods__cta-button {
    padding: 12px 30px;
    font-size: 16px;
    margin-top: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-payment-methods__cta-button--small {
    padding: 10px 25px;
    font-size: 15px;
  }

  .page-payment-methods__section {
    padding: 30px 15px;
    margin-bottom: 20px;
  }
  .page-payment-methods__container {
    padding: 0;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-payment-methods__section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }
  .page-payment-methods__introduction p,
  .page-payment-methods__deposit-process p,
  .page-payment-methods__withdrawal-process p,
  .page-payment-methods__important-notes p,
  .page-payment-methods__security p {
    font-size: 16px;
  }
  .page-payment-methods__method-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-payment-methods__method-card {
    padding: 20px;
  }
  .page-payment-methods__method-card img {
    
    margin-bottom: 15px;
  }
  .page-payment-methods__card-title {
    font-size: 20px;
  }
  .page-payment-methods__process-list li,
  .page-payment-methods__notes-list li {
    font-size: 15px;
    padding: 15px;
  }
  .page-payment-methods__process-list li strong {
    font-size: 16px;
  }
  .page-payment-methods__security-features {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-payment-methods__feature-item {
    padding: 20px;
  }
  .page-payment-methods__feature-title {
    font-size: 20px;
  }
  details.page-payment-methods__faq-item summary.page-payment-methods__faq-question {
    padding: 15px 20px;
  }
  .page-payment-methods__faq-qtext {
    font-size: 16px;
  }
  .page-payment-methods__faq-toggle {
    font-size: 24px;
    width: 24px;
    margin-left: 10px;
  }
  details.page-payment-methods__faq-item .page-payment-methods__faq-answer {
    padding: 0 20px 15px;
  }
  .page-payment-methods__faq-answer p {
    font-size: 15px;
  }

  /* Image responsive fixes */
  .page-payment-methods img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-payment-methods__section,
  .page-payment-methods__card,
  .page-payment-methods__container,
  .page-payment-methods__hero-container,
  .page-payment-methods__cta-buttons,
  .page-payment-methods__button-group,
  .page-payment-methods__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-payment-methods__cta-buttons {
    flex-direction: column;
    gap: 10px;
  }
}