/* style/payment-methods-prepaid-cards.css */
.page-payment-methods-prepaid-cards {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light grey for general text on dark background */
  background-color: #0A1931; /* Main background color */
  line-height: 1.6;
}

.page-payment-methods-prepaid-cards .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-payment-methods-prepaid-cards .hero-section {
  background: linear-gradient(135deg, #0A1931 0%, #2a3d58 100%); /* Dark blue gradient */
  padding: 100px 0;
  text-align: center;
  color: #FFD700; /* Gold for hero text */
}

.page-payment-methods-prepaid-cards .hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for main title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-payment-methods-prepaid-cards .hero-subtitle {
  font-size: 1.4em;
  margin-bottom: 40px;
  color: #FFFFFF; /* White for subtitle */
}

.page-payment-methods-prepaid-cards .btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  font-size: 1.1em;
  cursor: pointer;
  text-align: center;
}

.page-payment-methods-prepaid-cards .btn-primary {
  background-color: #FFD700; /* Gold button */
  color: #0A1931; /* Dark blue text on gold */
  border: 2px solid #FFD700;
}

.page-payment-methods-prepaid-cards .btn-primary:hover {
  background-color: #e5c100;
  transform: translateY(-2px);
}

.page-payment-methods-prepaid-cards .btn-secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text on dark background */
  border: 2px solid #FFD700;
  margin-left: 20px;
}

.page-payment-methods-prepaid-cards .btn-secondary:hover {
  background-color: #FFD700;
  color: #0A1931;
  transform: translateY(-2px);
}

.page-payment-methods-prepaid-cards .btn-small {
  padding: 8px 15px;
  font-size: 0.9em;
  border-radius: 5px;
}

.page-payment-methods-prepaid-cards .section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for section titles */
  text-align: center;
  margin-bottom: 50px;
  padding-top: 60px;
  position: relative;
}

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

.page-payment-methods-prepaid-cards .section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: -30px auto 60px auto;
  color: #E0E0E0;
}

.page-payment-methods-prepaid-cards .introduction-section,
.page-payment-methods-prepaid-cards .advantages-section,
.page-payment-methods-prepaid-cards .how-to-use-section,
.page-payment-methods-prepaid-cards .popular-cards-section,
.page-payment-methods-prepaid-cards .security-tips-section,
.page-payment-methods-prepaid-cards .faq-section,
.page-payment-methods-prepaid-cards .conclusion-section {
  padding: 80px 0;
  background-color: #12284b; /* Slightly lighter dark blue for sections */
  margin-top: 20px;
  border-radius: 10px;
}

.page-payment-methods-prepaid-cards .introduction-section {
  background-color: #0A1931;
}

.page-payment-methods-prepaid-cards .content-grid {
  display: flex;
  gap: 40px;
  align-items: center;
}

.page-payment-methods-prepaid-cards .content-grid .text-content {
  flex: 1;
}

.page-payment-methods-prepaid-cards .content-grid .text-content p {
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #E0E0E0;
}

.page-payment-methods-prepaid-cards .content-grid .image-content {
  flex: 1;
  text-align: center;
}

.page-payment-methods-prepaid-cards .content-grid img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.page-payment-methods-prepaid-cards .highlight {
  color: #FFD700;
  font-weight: bold;
}

.page-payment-methods-prepaid-cards .advantage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  text-align: center;
}

.page-payment-methods-prepaid-cards .advantage-item {
  background-color: #0A1931;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.page-payment-methods-prepaid-cards .advantage-item:hover {
  transform: translateY(-10px);
}

.page-payment-methods-prepaid-cards .advantage-item img {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

.page-payment-methods-prepaid-cards .advantage-item h3 {
  color: #FFD700;
  font-size: 1.5em;
  margin-bottom: 15px;
}

.page-payment-methods-prepaid-cards .advantage-item p {
  color: #E0E0E0;
  font-size: 1em;
}

.page-payment-methods-prepaid-cards .steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.page-payment-methods-prepaid-cards .step-item {
  background-color: #0A1931;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.page-payment-methods-prepaid-cards .step-number {
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  background-color: #FFD700;
  color: #0A1931;
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 20px;
}

.page-payment-methods-prepaid-cards .step-item h3 {
  color: #FFD700;
  font-size: 1.5em;
  margin-bottom: 15px;
}

.page-payment-methods-prepaid-cards .step-item p {
  color: #E0E0E0;
}

.page-payment-methods-prepaid-cards .step-item a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-payment-methods-prepaid-cards .step-item a:hover {
  text-decoration: underline;
}

.page-payment-methods-prepaid-cards .cta-block {
  background-color: #0A1931;
  padding: 40px;
  border-radius: 10px;
  text-align: center;
  margin-top: 60px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-payment-methods-prepaid-cards .cta-block p {
  font-size: 1.4em;
  margin-bottom: 30px;
  color: #FFFFFF;
}

.page-payment-methods-prepaid-cards .card-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  text-align: center;
}

.page-payment-methods-prepaid-cards .card-item {
  background-color: #0A1931;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-payment-methods-prepaid-cards .card-item img {
  max-width: 150px;
  height: auto;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-payment-methods-prepaid-cards .card-item h3 {
  color: #FFD700;
  font-size: 1.8em;
  margin-bottom: 15px;
}

.page-payment-methods-prepaid-cards .card-item p {
  color: #E0E0E0;
  margin-bottom: 20px;
}

.page-payment-methods-prepaid-cards .security-tips-section .tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.page-payment-methods-prepaid-cards .tip-item {
  background-color: #0A1931;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.page-payment-methods-prepaid-cards .tip-item img {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
}

.page-payment-methods-prepaid-cards .tip-item h3 {
  color: #FFD700;
  font-size: 1.4em;
  margin-bottom: 10px;
}

.page-payment-methods-prepaid-cards .tip-item p {
  color: #E0E0E0;
}

.page-payment-methods-prepaid-cards .faq-section .faq-item {
  background-color: #0A1931;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.page-payment-methods-prepaid-cards .faq-question {
  background-color: #1a335a; /* Slightly lighter dark blue for question */
  color: #FFD700;
  padding: 20px 30px;
  cursor: pointer;
  margin: 0;
  font-size: 1.3em;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-payment-methods-prepaid-cards .faq-question::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

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

.page-payment-methods-prepaid-cards .faq-answer {
  padding: 0 30px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
  background-color: #0A1931;
}

.page-payment-methods-prepaid-cards .faq-answer.open {
  max-height: 300px; /* Adjust as needed */
  padding: 20px 30px;
}

.page-payment-methods-prepaid-cards .faq-answer p {
  color: #E0E0E0;
  margin: 0;
}

.page-payment-methods-prepaid-cards .conclusion-section {
  text-align: center;
  background-color: #0A1931;
  padding-bottom: 100px;
}

.page-payment-methods-prepaid-cards .conclusion-section p {
  font-size: 1.2em;
  margin-bottom: 25px;
  color: #E0E0E0;
}

.page-payment-methods-prepaid-cards .conclusion-section .btn {
  margin: 10px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-payment-methods-prepaid-cards .hero-title {
    font-size: 2.8em;
  }
  .page-payment-methods-prepaid-cards .hero-subtitle {
    font-size: 1.2em;
  }
  .page-payment-methods-prepaid-cards .section-title {
    font-size: 2em;
  }
  .page-payment-methods-prepaid-cards .content-grid {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .page-payment-methods-prepaid-cards .hero-section {
    padding: 80px 0;
  }
  .page-payment-methods-prepaid-cards .hero-title {
    font-size: 2.2em;
  }
  .page-payment-methods-prepaid-cards .hero-subtitle {
    font-size: 1em;
  }
  .page-payment-methods-prepaid-cards .btn {
    padding: 12px 25px;
    font-size: 1em;
    margin: 5px;
  }
  .page-payment-methods-prepaid-cards .btn-secondary {
    margin-left: 0;
  }
  .page-payment-methods-prepaid-cards .section-title {
    font-size: 1.8em;
    margin-bottom: 40px;
    padding-top: 40px;
  }
  .page-payment-methods-prepaid-cards .introduction-section,
  .page-payment-methods-prepaid-cards .advantages-section,
  .page-payment-methods-prepaid-cards .how-to-use-section,
  .page-payment-methods-prepaid-cards .popular-cards-section,
  .page-payment-methods-prepaid-cards .security-tips-section,
  .page-payment-methods-prepaid-cards .faq-section,
  .page-payment-methods-prepaid-cards .conclusion-section {
    padding: 60px 0;
  }
  .page-payment-methods-prepaid-cards .advantage-grid,
  .page-payment-methods-prepaid-cards .steps-grid,
  .page-payment-methods-prepaid-cards .card-list,
  .page-payment-methods-prepaid-cards .tips-grid {
    grid-template-columns: 1fr;
  }
  .page-payment-methods-prepaid-cards .cta-block p {
    font-size: 1.2em;
  }
}

@media (max-width: 480px) {
  .page-payment-methods-prepaid-cards .hero-title {
    font-size: 1.8em;
  }
  .page-payment-methods-prepaid-cards .hero-subtitle {
    font-size: 0.9em;
  }
  .page-payment-methods-prepaid-cards .btn {
    display: block;
    width: fit-content;
    margin: 10px auto;
  }
  .page-payment-methods-prepaid-cards .section-title {
    font-size: 1.5em;
  }
  .page-payment-methods-prepaid-cards .section-description {
    font-size: 0.9em;
  }
  .page-payment-methods-prepaid-cards .faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-payment-methods-prepaid-cards .faq-answer.open {
    padding: 15px 20px;
  }
  .page-payment-methods-prepaid-cards .cta-block p {
    font-size: 1em;
  }
}