/* style/payment-methods-currency-support.css */
.page-payment-methods-currency-support {
  font-family: 'Arial', sans-serif;
  color: #f0f0f0; /* Off-white for general text on dark background */
  background-color: #1a1a2e; /* Very dark blue/grey background for main content */
  line-height: 1.6;
}

.page-payment-methods-currency-support__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.page-payment-methods-currency-support__hero {
  position: relative;
  padding: 100px 0 50px;
  text-align: center;
  background: linear-gradient(135deg, #1a1a2e 0%, #0d121f 100%); /* Darker gradient */
  overflow: hidden;
}

.page-payment-methods-currency-support__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
  z-index: 0;
}

.page-payment-methods-currency-support__hero .page-payment-methods-currency-support__container {
  position: relative;
  z-index: 1;
}

.page-payment-methods-currency-support__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.page-payment-methods-currency-support__hero-description {
  font-size: 1.3em;
  color: #e0e0e0;
  max-width: 800px;
  margin: 0 auto 40px;
}

/* General Sections */
.page-payment-methods-currency-support__section {
  padding: 60px 0;
  background-color: #1a1a2e;
}

.page-payment-methods-currency-support__section--dark {
  background-color: #0d121f;
}

.page-payment-methods-currency-support__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for section titles */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 10px;
}

.page-payment-methods-currency-support__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #1E90FF; /* Dodger Blue accent */
  border-radius: 2px;
}

.page-payment-methods-currency-support__text {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #f0f0f0;
}

.page-payment-methods-currency-support__text strong {
  color: #FFD700;
}

.page-payment-methods-currency-support__link {
  color: #FFD700; /* Gold for links */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-payment-methods-currency-support__link:hover {
  color: #1E90FF; /* Dodger Blue on hover */
  text-decoration: underline;
}

/* Buttons */
.page-payment-methods-currency-support__button {
  display: inline-block;
  padding: 15px 30px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.page-payment-methods-currency-support__button--primary {
  background-color: #FFD700; /* Gold button */
  color: #222222; /* Dark text for contrast */
  margin: 10px;
}

.page-payment-methods-currency-support__button--primary:hover {
  background-color: #b39700; /* Darker gold on hover */
  transform: translateY(-3px);
}

.page-payment-methods-currency-support__button--secondary {
  background-color: transparent;
  border: 2px solid #1E90FF; /* Dodger Blue border */
  color: #1E90FF; /* Dodger Blue text */
  margin: 10px;
}

.page-payment-methods-currency-support__button--secondary:hover {
  background-color: #1E90FF; /* Dodger Blue background on hover */
  color: #FFFFFF; /* White text on hover */
  transform: translateY(-3px);
}

/* Currency Grid */
.page-payment-methods-currency-support__currency-grid,
.page-payment-methods-currency-support__method-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-payment-methods-currency-support__currency-item,
.page-payment-methods-currency-support__method-item {
  background-color: #2a2a4a; /* Slightly lighter dark background */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.page-payment-methods-currency-support__currency-icon,
.page-payment-methods-currency-support__method-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-payment-methods-currency-support__currency-title,
.page-payment-methods-currency-support__method-title {
  font-size: 1.8em;
  color: #FFD700; /* Gold for sub-titles */
  margin-bottom: 15px;
}

.page-payment-methods-currency-support__list {
  list-style: none;
  padding: 0;
  margin: 15px 0;
  text-align: left;
  font-size: 1em;
  color: #f0f0f0;
}

.page-payment-methods-currency-support__list li {
  margin-bottom: 8px;
  padding-left: 25px;
  position: relative;
}

.page-payment-methods-currency-support__list li::before {
  content: '✓';
  color: #1E90FF; /* Dodger Blue checkmark */
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-payment-methods-currency-support__list--inline {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 30px;
}

.page-payment-methods-currency-support__list--inline li {
  flex: 0 0 45%; /* Adjust for 2 columns on larger screens */
  margin: 10px 2.5%;
  text-align: left;
  font-size: 1.1em;
}

/* Security Features */
.page-payment-methods-currency-support__security-features {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  margin-top: 40px;
}

.page-payment-methods-currency-support__security-icon {
  width: 120px;
  height: 120px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(30, 144, 255, 0.5));
}

/* Image Full Width */
.page-payment-methods-currency-support__image-full-width {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 10px;
  margin-top: 40px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* FAQ Section */
.page-payment-methods-currency-support__faq {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  margin-top: 40px;
}

.page-payment-methods-currency-support__faq-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.5));
}

.page-payment-methods-currency-support__faq-content {
  width: 100%;
  max-width: 800px;
}

.page-payment-methods-currency-support__faq-item {
  background-color: #2a2a4a;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

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

.page-payment-methods-currency-support__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  color: #1E90FF;
  transition: transform 0.3s ease;
}

.page-payment-methods-currency-support__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-payment-methods-currency-support__faq-answer {
  font-size: 1em;
  color: #e0e0e0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, opacity 0.5s ease-out;
  opacity: 0;
}

.page-payment-methods-currency-support__faq-answer.active {
  max-height: 200px; /* Adjust based on content */
  opacity: 1;
}

/* Call to Action */
.page-payment-methods-currency-support__cta {
  text-align: center;
  padding: 80px 0;
  background: linear-gradient(135deg, #1E90FF 0%, #0056b3 100%); /* Dodger Blue gradient */
  color: #FFFFFF;
}

.page-payment-methods-currency-support__cta-title {
  font-size: 2.8em;
  color: #FFD700; /* Gold for CTA title */
  margin-bottom: 20px;
}

.page-payment-methods-currency-support__cta .page-payment-methods-currency-support__text {
  font-size: 1.2em;
  max-width: 900px;
  margin: 0 auto 40px;
  color: #f0f0f0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-payment-methods-currency-support__hero-title {
    font-size: 2.5em;
  }

  .page-payment-methods-currency-support__section-title {
    font-size: 2em;
  }

  .page-payment-methods-currency-support__currency-grid,
  .page-payment-methods-currency-support__method-grid {
    grid-template-columns: 1fr;
  }

  .page-payment-methods-currency-support__list--inline li {
    flex: 0 0 100%;
    margin: 5px 0;
  }

  .page-payment-methods-currency-support__faq-question {
    font-size: 1.1em;
  }

  .page-payment-methods-currency-support__cta-title {
    font-size: 2em;
  }
}

@media (max-width: 480px) {
  .page-payment-methods-currency-support__hero-title {
    font-size: 2em;
  }

  .page-payment-methods-currency-support__hero-description {
    font-size: 1em;
  }

  .page-payment-methods-currency-support__button {
    padding: 12px 20px;
    font-size: 1em;
  }

  .page-payment-methods-currency-support__section-title {
    font-size: 1.8em;
  }

  .page-payment-methods-currency-support__text {
    font-size: 0.95em;
  }
}