/* style/payment-methods.css */
:root {
  --primary-color: #0A244A;
  --secondary-color: #FFD700;
  --text-light: #ffffff;
  --text-dark: #333333;
  --background-light: #f4f7f6;
  --background-dark: #071a36;
  --card-bg: #ffffff;
  --border-color: #e0e0e0;
}

.page-payment-methods {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--background-light);
}

.page-payment-methods__section {
  padding: 60px 0;
  margin-bottom: 20px;
}

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

.page-payment-methods__section-title {
  font-size: 36px;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  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: var(--secondary-color);
  border-radius: 2px;
}

.page-payment-methods__sub-title {
  font-size: 28px;
  color: var(--primary-color);
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-payment-methods__text-content {
  font-size: 17px;
  margin-bottom: 20px;
  line-height: 1.8;
  text-align: justify;
}

.page-payment-methods__list {
  list-style: disc inside;
  margin-bottom: 20px;
  padding-left: 20px;
  font-size: 16px;
}

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

.page-payment-methods__ordered-list {
  list-style: decimal inside;
  margin-bottom: 20px;
  padding-left: 20px;
  font-size: 16px;
}

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

/* Hero Section */
.page-payment-methods__hero-section {
  background-color: var(--primary-color);
  padding: 80px 0;
  color: var(--text-light);
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.page-payment-methods__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin-bottom: 40px;
}

.page-payment-methods__hero-title {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--secondary-color);
  line-height: 1.2;
}

.page-payment-methods__hero-subtitle {
  font-size: 22px;
  margin-bottom: 30px;
  color: var(--text-light);
}

.page-payment-methods__cta-button {
  display: inline-block;
  padding: 18px 45px;
  background: var(--secondary-color);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 8px;
  font-size: 20px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

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

.page-payment-methods__hero-image {
  width: 100%;
  max-width: 800px;
  margin-top: 40px;
}

.page-payment-methods__hero-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}

/* Deposit Methods */
.page-payment-methods__deposit-methods {
  background-color: var(--background-light);
}

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

.page-payment-methods__method-card {
  background: var(--card-bg);
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  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 10px 30px rgba(0, 0, 0, 0.15);
}

.page-payment-methods__method-icon {
  width: 120px;
  height: 120px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-payment-methods__card-title {
  font-size: 24px;
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-payment-methods__card-description {
  font-size: 16px;
  color: var(--text-dark);
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-payment-methods__method-card .page-payment-methods__list {
  text-align: left;
  width: 100%;
  padding-left: 0;
  list-style: none;
}

.page-payment-methods__method-card .page-payment-methods__list li {
  font-size: 15px;
  margin-bottom: 8px;
  position: relative;
  padding-left: 25px;
}

.page-payment-methods__method-card .page-payment-methods__list li::before {
  content: '•';
  color: var(--secondary-color);
  position: absolute;
  left: 0;
  font-size: 20px;
  line-height: 1;
  top: 0;
}

.page-payment-methods__button-wrapper {
  text-align: center;
  margin-top: 40px;
}

.page-payment-methods__main-cta-button {
  display: inline-block;
  padding: 15px 35px;
  background: var(--secondary-color);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.page-payment-methods__main-cta-button:hover {
  background: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}

/* Withdrawal Guide */
.page-payment-methods__withdrawal-guide {
  background-color: var(--background-light);
}

.page-payment-methods__image-wrapper {
  text-align: center;
  margin-bottom: 30px;
}

.page-payment-methods__content-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Security Section */
.page-payment-methods__security {
  background-color: var(--background-dark);
  color: var(--text-light);
}

.page-payment-methods__security .page-payment-methods__section-title {
  color: var(--secondary-color);
}

.page-payment-methods__security .page-payment-methods__text-content {
  color: #cccccc;
}

.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: #1a3a63;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-payment-methods__feature-item:hover {
  transform: translateY(-10px);
  background-color: #2a4e7a;
}

.page-payment-methods__feature-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-payment-methods__feature-title {
  font-size: 22px;
  color: var(--secondary-color);
  margin-bottom: 10px;
  font-weight: bold;
}

.page-payment-methods__feature-description {
  font-size: 15px;
  color: #e0e0e0;
}

/* Promotions Section */
.page-payment-methods__promotions {
  background-color: var(--background-light);
}

.page-payment-methods__promotion-card {
  background: var(--card-bg);
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  padding: 30px;
  margin-bottom: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-payment-methods__promotion-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 25px;
  object-fit: cover;
}

.page-payment-methods__promo-button {
  display: inline-block;
  padding: 12px 25px;
  background: var(--primary-color);
  color: var(--text-light);
  text-decoration: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
}

.page-payment-methods__promo-button:hover {
  background: #1a3a63;
  transform: translateY(-2px);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

/* FAQ Section */
.page-payment-methods__faq {
  background-color: var(--background-dark);
  color: var(--text-light);
}

.page-payment-methods__faq .page-payment-methods__section-title {
  color: var(--secondary-color);
}

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

.faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  background: #1a3a63;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: var(--primary-color);
  color: var(--text-light);
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: #1a3a63;
}

.faq-question h3 {
  font-size: 19px;
  margin: 0;
  color: var(--text-light);
  font-weight: bold;
}

.faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  transition: transform 0.3s ease;
  color: var(--secondary-color);
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 25px;
  background: #1a3a63;
  color: #e0e0e0;
}

.faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height to contain content */
  padding: 20px 25px;
}

.faq-answer p {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
}

/* Conclusion Section */
.page-payment-methods__conclusion {
  background-color: var(--background-light);
  text-align: center;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-payment-methods__hero-title {
    font-size: 40px;
  }
  .page-payment-methods__hero-subtitle {
    font-size: 20px;
  }
  .page-payment-methods__section-title {
    font-size: 30px;
  }
  .page-payment-methods__sub-title {
    font-size: 24px;
  }
  .page-payment-methods__method-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-payment-methods__section {
    padding: 40px 0;
  }
  .page-payment-methods__hero-section {
    padding: 60px 0;
  }
  .page-payment-methods__hero-title {
    font-size: 32px;
  }
  .page-payment-methods__hero-subtitle {
    font-size: 18px;
  }
  .page-payment-methods__cta-button {
    padding: 15px 30px;
    font-size: 18px;
  }
  .page-payment-methods__section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }
  .page-payment-methods__sub-title {
    font-size: 22px;
  }
  .page-payment-methods__text-content, .page-payment-methods__list li, .page-payment-methods__ordered-list li {
    font-size: 15px;
  }
  .page-payment-methods__method-card {
    padding: 20px;
  }
  .page-payment-methods__method-icon {
    width: 90px;
    height: 90px;
  }
  .page-payment-methods__card-title {
    font-size: 20px;
  }
  .page-payment-methods__feature-icon {
    width: 80px;
    height: 80px;
  }
  .page-payment-methods__feature-title {
    font-size: 19px;
  }
  .faq-question {
    padding: 15px 20px;
  }
  .faq-question h3 {
    font-size: 17px;
  }
  .faq-toggle {
    font-size: 24px;
  }
  .faq-answer {
    padding: 0 20px;
  }
  .faq-item.active .faq-answer {
    padding: 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-payment-methods__hero-section {
    padding: 40px 0;
  }
  .page-payment-methods__hero-title {
    font-size: 28px;
  }
  .page-payment-methods__hero-subtitle {
    font-size: 16px;
  }
  .page-payment-methods__cta-button {
    padding: 12px 25px;
    font-size: 16px;
  }
  .page-payment-methods__section-title {
    font-size: 24px;
  }
  .page-payment-methods__sub-title {
    font-size: 20px;
  }
  .page-payment-methods__method-grid {
    grid-template-columns: 1fr;
  }
  .page-payment-methods__feature-item {
    padding: 20px;
  }
  .faq-question h3 {
    font-size: 16px;
  }
  .faq-toggle {
    font-size: 20px;
  }
}