.page-payment-methods {
  color: #F3F8FF; /* Text Main for dark body background */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  background-color: #08162B; /* Deep Navy from body background */
}

.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; /* Small top padding for non-homepage hero */
  background: linear-gradient(180deg, #113B7A 0%, #08162B 100%);
  border-bottom: 2px solid #1B3357;
}

.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 20px rgba(0, 0, 0, 0.3);
}

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

.page-payment-methods__main-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: #F2C14E; /* Gold */
  margin-bottom: 15px;
  line-height: 1.2;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

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

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

.page-payment-methods__btn-primary {
  background: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%);
  color: #ffffff;
  border: none;
}

.page-payment-methods__btn-primary:hover {
  background: linear-gradient(180deg, #1144A6 0%, #2B73F6 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-payment-methods__btn-secondary {
  background: #1D5FD1; /* Auxiliary color */
  color: #ffffff;
  border: 2px solid #4FA8FF;
}

.page-payment-methods__btn-secondary:hover {
  background: #113B7A; /* Primary color */
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-payment-methods__section {
  padding: 60px 20px;
  border-bottom: 1px solid #1B3357; /* Divider */
}

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

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

.page-payment-methods__section-title {
  font-size: clamp(24px, 3.5vw, 38px);
  color: #F2C14E; /* Gold */
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

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

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

.page-payment-methods__card {
  background: #10233F; /* Card BG */
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #244D84; /* Border */
}

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

.page-payment-methods__card-image {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
  min-height: 200px;
}

.page-payment-methods__card-title {
  font-size: 24px;
  color: #F2C14E; /* Gold */
  margin-bottom: 15px;
  font-weight: 600;
}

.page-payment-methods__card-text {
  font-size: 16px;
  color: #AFC4E8; /* Text Secondary */
  margin-bottom: 20px;
}

.page-payment-methods__btn-text {
  color: #4FA8FF; /* Glow */
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-payment-methods__btn-text:hover {
  color: #F2C14E; /* Gold */
  text-decoration: underline;
}

.page-payment-methods__steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-top: 40px;
}

.page-payment-methods__step-item {
  display: flex;
  align-items: flex-start;
  background: #10233F; /* Card BG */
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #244D84; /* Border */
}

.page-payment-methods__step-icon {
  background: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%);
  color: #ffffff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: bold;
  flex-shrink: 0;
  margin-right: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.page-payment-methods__step-content h3 {
  font-size: 22px;
  color: #F2C14E; /* Gold */
  margin-top: 0;
  margin-bottom: 10px;
}

.page-payment-methods__step-content p {
  font-size: 16px;
  color: #AFC4E8; /* Text Secondary */
}

.page-payment-methods__button-container {
  text-align: center;
  margin-top: 40px;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

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

.page-payment-methods__feature-item {
  background: #10233F; /* Card BG */
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #244D84; /* Border */
}

.page-payment-methods__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-payment-methods__feature-image {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
  min-height: 200px;
}

.page-payment-methods__feature-title {
  font-size: 22px;
  color: #F2C14E; /* Gold */
  margin-bottom: 10px;
  font-weight: 600;
}

.page-payment-methods__feature-text {
  font-size: 16px;
  color: #AFC4E8; /* Text Secondary */
}

.page-payment-methods__contact-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  font-size: 17px;
  color: #F3F8FF; /* Text Main */
}

.page-payment-methods__contact-list li {
  margin-bottom: 10px;
}

.page-payment-methods__contact-list strong {
  color: #F2C14E; /* Gold */
}

/* FAQ Styles */
details.page-payment-methods__faq-item {
  margin-bottom: 15px;
  border-radius: 12px;
  border: 1px solid #244D84; /* Border */
  overflow: hidden;
  background: #10233F; /* Card BG */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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;
  color: #F2C14E; /* Gold */
  font-size: 18px;
  font-weight: 600;
}

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: #113B7A; /* Primary color */
}

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

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

details.page-payment-methods__faq-item[open] .page-payment-methods__faq-toggle {
  color: #F2C14E; /* Gold when open */
}

details.page-payment-methods__faq-item .page-payment-methods__faq-answer {
  padding: 0 25px 25px;
  background: #08162B; /* Deep Navy */
  border-radius: 0 0 12px 12px;
  color: #AFC4E8; /* Text Secondary */
  font-size: 16px;
}

.page-payment-methods__conclusion-section .page-payment-methods__cta-group {
  margin-top: 50px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-payment-methods__method-cards, .page-payment-methods__features-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  .page-payment-methods__hero-section {
    padding: 50px 15px;
  }
  .page-payment-methods__section {
    padding: 40px 15px;
  }
}

@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 img {
    border-radius: 8px;
  }
  .page-payment-methods__cta-group {
    flex-direction: column;
    gap: 15px;
  }
  .page-payment-methods__cta-button {
    padding: 12px 25px;
    font-size: 16px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-payment-methods__button-container {
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-payment-methods__main-title {
    font-size: 32px;
  }
  .page-payment-methods__subtitle {
    font-size: 16px;
  }
  .page-payment-methods__section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }
  .page-payment-methods__text-block {
    font-size: 16px;
  }
  .page-payment-methods__card-title {
    font-size: 20px;
  }
  .page-payment-methods__card-text {
    font-size: 15px;
  }
  .page-payment-methods__step-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .page-payment-methods__step-icon {
    margin-right: 0;
    margin-bottom: 15px;
  }
  .page-payment-methods__step-content h3 {
    font-size: 20px;
  }
  .page-payment-methods__faq-item summary.page-payment-methods__faq-question {
    padding: 15px 20px;
    font-size: 16px;
  }
  .page-payment-methods__faq-qtext {
    font-size: 16px;
  }
  .page-payment-methods__faq-toggle {
    font-size: 24px;
    width: 25px;
  }
  .page-payment-methods__faq-item .page-payment-methods__faq-answer {
    padding: 0 20px 20px;
  }
  .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 {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-payment-methods__cta-group {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 480px) {
  .page-payment-methods__main-title {
    font-size: 28px;
  }
  .page-payment-methods__section-title {
    font-size: 24px;
  }
  .page-payment-methods__method-cards, .page-payment-methods__features-grid {
    grid-template-columns: 1fr;
  }
}