/* style/payment-methods.css */
.page-payment-methods {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0;
  line-height: 1.6;
  background-color: #0D1B2A; /* Darker background for contrast */
}

.page-payment-methods__hero {
  background: linear-gradient(135deg, #1A2B4C 0%, #0D1B2A 100%);
  padding: 80px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  min-height: 450px;
}

.page-payment-methods__hero-content {
  max-width: 900px;
  z-index: 1;
  position: relative;
}

.page-payment-methods__hero-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
}

.page-payment-methods__hero-subtitle {
  font-size: 1.2em;
  color: #B0C4DE;
  margin-bottom: 30px;
}

.page-payment-methods__hero-cta {
  display: inline-block;
  background-color: #FFD700;
  color: #1A2B4C;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-payment-methods__hero-cta:hover {
  background-color: #E6C200;
  transform: translateY(-3px);
}

.page-payment-methods__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.15;
  overflow: hidden;
}

.page-payment-methods__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(50%) blur(3px);
  transform: scale(1.05);
}

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

.page-payment-methods__section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

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

.page-payment-methods__section-title {
  font-size: 2.2em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-payment-methods__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-payment-methods__introduction p {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 20px auto;
  color: #B0C4DE;
}

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

.page-payment-methods__method-card {
  background-color: #1A2B4C;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.page-payment-methods__method-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.5));
}

.page-payment-methods__method-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-payment-methods__method-description {
  color: #B0C4DE;
  font-size: 1em;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-payment-methods__method-details {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  text-align: left;
  width: 100%;
}

.page-payment-methods__method-details li {
  color: #B0C4DE;
  margin-bottom: 8px;
  font-size: 0.95em;
  display: flex;
  align-items: center;
}

.page-payment-methods__method-details li i {
  color: #FFD700;
  margin-right: 10px;
}

.page-payment-methods__method-link {
  display: inline-block;
  background-color: #FFD700;
  color: #1A2B4C;
  padding: 10px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  transition: background-color 0.3s ease;
  margin-top: auto; /* Push button to bottom */
}

.page-payment-methods__method-link:hover {
  background-color: #E6C200;
}

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

.page-payment-methods__feature-item {
  background-color: #1A2B4C;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-payment-methods__feature-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 6px rgba(255, 215, 0, 0.4));
}

.page-payment-methods__feature-item h4 {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-payment-methods__feature-item p {
  color: #B0C4DE;
  font-size: 1em;
}

.page-payment-methods__security-note {
  text-align: center;
  font-style: italic;
  color: #B0C4DE;
  margin-top: 40px;
  font-size: 1em;
}

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

.page-payment-methods__detail-item {
  background-color: #1A2B4C;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-payment-methods__detail-title {
  font-size: 1.4em;
  margin-bottom: 15px;
}

.page-payment-methods__detail-title a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-payment-methods__detail-title a:hover {
  color: #E6C200;
}

.page-payment-methods__detail-description {
  color: #B0C4DE;
  font-size: 0.95em;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-payment-methods__detail-button {
  display: inline-block;
  background-color: #FFD700;
  color: #1A2B4C;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9em;
  transition: background-color 0.3s ease;
  align-self: flex-start;
}

.page-payment-methods__detail-button:hover {
  background-color: #E6C200;
}

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

.page-payment-methods__faq-item {
  background-color: #1A2B4C;
  border-radius: 10px;
  margin-bottom: 20px;
  padding: 20px 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-payment-methods__faq-question {
  font-size: 1.3em;
  color: #FFD700;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-payment-methods__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  color: #FFD700;
  transition: transform 0.3s ease;
}

.page-payment-methods__faq-question.active::after {
  content: '-';
  transform: translateY(-50%) rotate(0deg);
}

.page-payment-methods__faq-answer {
  color: #B0C4DE;
  font-size: 1em;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding-top 0.5s ease-out;
  padding-top: 0;
}

.page-payment-methods__faq-answer.active {
  max-height: 200px; /* Adjust as needed */
  padding-top: 15px;
}

.page-payment-methods__cta {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(90deg, #1A2B4C, #0D1B2A);
}

.page-payment-methods__cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #1A2B4C;
  padding: 18px 40px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
  margin-top: 30px;
}

.page-payment-methods__cta-button:hover {
  background-color: #E6C200;
  transform: translateY(-5px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-payment-methods__hero {
    padding: 60px 15px;
  }

  .page-payment-methods__hero-title {
    font-size: 2em;
  }

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

  .page-payment-methods__section-title {
    font-size: 1.8em;
  }

  .page-payment-methods__methods-grid,
  .page-payment-methods__security-features,
  .page-payment-methods__detail-list {
    grid-template-columns: 1fr;
  }

  .page-payment-methods__container {
    padding: 30px 15px;
  }

  .page-payment-methods__method-card,
  .page-payment-methods__feature-item,
  .page-payment-methods__detail-item,
  .page-payment-methods__faq-item {
    padding: 20px;
  }

  .page-payment-methods__method-icon {
    width: 60px;
    height: 60px;
  }

  .page-payment-methods__method-title {
    font-size: 1.5em;
  }

  .page-payment-methods__feature-item h4 {
    font-size: 1.3em;
  }

  .page-payment-methods__detail-title {
    font-size: 1.2em;
  }

  .page-payment-methods__faq-question {
    font-size: 1.1em;
  }

  .page-payment-methods__cta-button {
    padding: 15px 30px;
    font-size: 1.1em;
  }
}