/* style/payment-methods-deposit-guide.css */

:root {
  --page-payment-methods-deposit-guide-primary-color: #FFD700; /* Gold */
  --page-payment-methods-deposit-guide-secondary-color: #8B0000; /* Dark Red */
  --page-payment-methods-deposit-guide-text-dark: #333;
  --page-payment-methods-deposit-guide-text-light: #fff;
  --page-payment-methods-deposit-guide-bg-light: #f8f8f8;
  --page-payment-methods-deposit-guide-bg-dark: #222;
  --page-payment-methods-deposit-guide-border-color: #ddd;
}

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

.page-payment-methods-deposit-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-payment-methods-deposit-guide__hero-section {
  background: linear-gradient(135deg, var(--page-payment-methods-deposit-guide-primary-color) 0%, var(--page-payment-methods-deposit-guide-secondary-color) 100%);
  color: var(--page-payment-methods-deposit-guide-text-light);
  padding: 80px 0;
  text-align: center;
}

.page-payment-methods-deposit-guide__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  color: var(--page-payment-methods-deposit-guide-text-light);
}

.page-payment-methods-deposit-guide__hero-title .highlight {
  color: var(--page-payment-methods-deposit-guide-primary-color);
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.page-payment-methods-deposit-guide__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-payment-methods-deposit-guide__hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-payment-methods-deposit-guide__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.page-payment-methods-deposit-guide__btn--primary {
  background-color: var(--page-payment-methods-deposit-guide-primary-color);
  color: var(--page-payment-methods-deposit-guide-secondary-color);
  border: 2px solid var(--page-payment-methods-deposit-guide-primary-color);
}

.page-payment-methods-deposit-guide__btn--primary:hover {
  background-color: #e6c200; /* Slightly darker gold */
  color: var(--page-payment-methods-deposit-guide-text-dark);
  transform: translateY(-2px);
}

.page-payment-methods-deposit-guide__btn--secondary {
  background-color: transparent;
  color: var(--page-payment-methods-deposit-guide-text-light);
  border: 2px solid var(--page-payment-methods-deposit-guide-text-light);
}

.page-payment-methods-deposit-guide__btn--secondary:hover {
  background-color: rgba(255,255,255,0.2);
  color: var(--page-payment-methods-deposit-guide-text-light);
  transform: translateY(-2px);
}

.page-payment-methods-deposit-guide__btn--small {
  padding: 10px 20px;
  font-size: 0.9em;
  border-radius: 30px;
}

.page-payment-methods-deposit-guide__intro-section,
.page-payment-methods-deposit-guide__methods-section,
.page-payment-methods-deposit-guide__faq-section,
.page-payment-methods-deposit-guide__cta-section {
  padding: 60px 0;
  background-color: var(--page-payment-methods-deposit-guide-bg-light);
}

.page-payment-methods-deposit-guide__methods-section {
  background-color: #fff;
}

.page-payment-methods-deposit-guide__section-title {
  font-size: 2.5em;
  color: var(--page-payment-methods-deposit-guide-secondary-color);
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-payment-methods-deposit-guide__section-title .highlight {
  color: var(--page-payment-methods-deposit-guide-primary-color);
}

.page-payment-methods-deposit-guide__section-subtitle {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  color: var(--page-payment-methods-deposit-guide-text-dark);
}

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

.page-payment-methods-deposit-guide__feature-item {
  background-color: #fff;
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-payment-methods-deposit-guide__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.page-payment-methods-deposit-guide__feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  border-radius: 50%;
  object-fit: contain;
}

.page-payment-methods-deposit-guide__feature-title {
  font-size: 1.5em;
  color: var(--page-payment-methods-deposit-guide-secondary-color);
  margin-bottom: 15px;
}

.page-payment-methods-deposit-guide__feature-item p {
  color: var(--page-payment-methods-deposit-guide-text-dark);
}

.page-payment-methods-deposit-guide__method-card {
  background-color: var(--page-payment-methods-deposit-guide-bg-light);
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  margin-bottom: 40px;
  padding: 30px;
}

.page-payment-methods-deposit-guide__method-title {
  font-size: 2em;
  color: var(--page-payment-methods-deposit-guide-secondary-color);
  margin-bottom: 25px;
  text-align: center;
  border-bottom: 3px solid var(--page-payment-methods-deposit-guide-primary-color);
  padding-bottom: 15px;
}

.page-payment-methods-deposit-guide__method-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
}

.page-payment-methods-deposit-guide__method-image {
  flex: 1 1 300px;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  object-fit: cover;
}

.page-payment-methods-deposit-guide__method-details {
  flex: 2 1 450px;
}

.page-payment-methods-deposit-guide__method-details h4 {
  font-size: 1.3em;
  color: var(--page-payment-methods-deposit-guide-secondary-color);
  margin-top: 20px;
  margin-bottom: 10px;
}

.page-payment-methods-deposit-guide__method-details ul,
.page-payment-methods-deposit-guide__method-details ol {
  margin-left: 20px;
  margin-bottom: 20px;
  color: var(--page-payment-methods-deposit-guide-text-dark);
}

.page-payment-methods-deposit-guide__method-details li {
  margin-bottom: 8px;
}

.page-payment-methods-deposit-guide__method-details a {
  color: var(--page-payment-methods-deposit-guide-secondary-color);
  text-decoration: underline;
  font-weight: bold;
}

.page-payment-methods-deposit-guide__method-details a:hover {
  color: var(--page-payment-methods-deposit-guide-primary-color);
}

.page-payment-methods-deposit-guide__faq-item {
  background-color: #fff;
  border-radius: 10px;
  margin-bottom: 20px;
  padding: 25px 30px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.05);
}

.page-payment-methods-deposit-guide__faq-question {
  font-size: 1.4em;
  color: var(--page-payment-methods-deposit-guide-secondary-color);
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-payment-methods-deposit-guide__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  font-weight: bold;
  color: var(--page-payment-methods-deposit-guide-primary-color);
}

.page-payment-methods-deposit-guide__faq-question.active::after {
  content: '-';
}

.page-payment-methods-deposit-guide__faq-answer {
  font-size: 1.1em;
  color: var(--page-payment-methods-deposit-guide-text-dark);
  display: none; /* Hidden by default */
  margin-top: 15px;
}

.page-payment-methods-deposit-guide__faq-answer p {
  margin-bottom: 10px;
}

.page-payment-methods-deposit-guide__faq-answer a {
  color: var(--page-payment-methods-deposit-guide-secondary-color);
  text-decoration: underline;
}

.page-payment-methods-deposit-guide__faq-answer a:hover {
  color: var(--page-payment-methods-deposit-guide-primary-color);
}

.page-payment-methods-deposit-guide__cta-section {
  background: var(--page-payment-methods-deposit-guide-secondary-color);
  color: var(--page-payment-methods-deposit-guide-text-light);
  text-align: center;
  padding: 80px 0;
}

.page-payment-methods-deposit-guide__cta-content {
  max-width: 900px;
}

.page-payment-methods-deposit-guide__cta-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: var(--page-payment-methods-deposit-guide-text-light);
}

.page-payment-methods-deposit-guide__cta-title .highlight {
  color: var(--page-payment-methods-deposit-guide-primary-color);
}

.page-payment-methods-deposit-guide__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: rgba(255,255,255,0.9);
}

.page-payment-methods-deposit-guide__cta-description a {
  color: var(--page-payment-methods-deposit-guide-primary-color);
  text-decoration: underline;
  font-weight: bold;
}

.page-payment-methods-deposit-guide__cta-description a:hover {
  color: #e6c200;
}

.page-payment-methods-deposit-guide__cta-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-payment-methods-deposit-guide__hero-title {
    font-size: 2.5em;
  }
  .page-payment-methods-deposit-guide__section-title {
    font-size: 2em;
  }
  .page-payment-methods-deposit-guide__method-content {
    flex-direction: column;
  }
  .page-payment-methods-deposit-guide__method-image {
    max-width: 100%;
  }
  .page-payment-methods-deposit-guide__cta-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-payment-methods-deposit-guide__hero-section {
    padding: 60px 0;
  }
  .page-payment-methods-deposit-guide__hero-title {
    font-size: 2em;
  }
  .page-payment-methods-deposit-guide__hero-description {
    font-size: 1em;
  }
  .page-payment-methods-deposit-guide__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-payment-methods-deposit-guide__btn {
    width: 100%;
    max-width: 300px;
  }
  .page-payment-methods-deposit-guide__intro-section,
  .page-payment-methods-deposit-guide__methods-section,
  .page-payment-methods-deposit-guide__faq-section,
  .page-payment-methods-deposit-guide__cta-section {
    padding: 40px 0;
  }
  .page-payment-methods-deposit-guide__section-title {
    font-size: 1.8em;
  }
  .page-payment-methods-deposit-guide__feature-title {
    font-size: 1.3em;
  }
  .page-payment-methods-deposit-guide__method-title {
    font-size: 1.8em;
  }
  .page-payment-methods-deposit-guide__cta-title {
    font-size: 1.8em;
  }
  .page-payment-methods-deposit-guide__cta-actions {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .page-payment-methods-deposit-guide__hero-title {
    font-size: 1.8em;
  }
  .page-payment-methods-deposit-guide__section-title {
    font-size: 1.5em;
  }
  .page-payment-methods-deposit-guide__method-title {
    font-size: 1.5em;
  }
  .page-payment-methods-deposit-guide__faq-question {
    font-size: 1.2em;
  }
  .page-payment-methods-deposit-guide__cta-title {
    font-size: 1.6em;
  }
}