/* style/beginner-guide-deposit-methods.css */
.page-beginner-guide-deposit-methods {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f8f8;
}

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

.page-beginner-guide-deposit-methods__hero-section {
  background: linear-gradient(135deg, #003366, #1a4d80);
  color: #fff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-beginner-guide-deposit-methods__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFCC00; /* Gold for highlight */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-beginner-guide-deposit-methods__hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  color: #e0e0e0;
}

.page-beginner-guide-deposit-methods__cta-button {
  display: inline-block;
  background-color: #CC0000; /* Accent Red for CTA */
  color: #fff;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-beginner-guide-deposit-methods__cta-button:hover {
  background-color: #e60000;
  transform: translateY(-3px);
}

.page-beginner-guide-deposit-methods__cta-button--small {
  padding: 10px 20px;
  font-size: 1em;
}

.page-beginner-guide-deposit-methods__cta-button--large {
  padding: 20px 40px;
  font-size: 1.4em;
}

.page-beginner-guide-deposit-methods__section-title {
  font-size: 2.5em;
  color: #003366;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

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

.page-beginner-guide-deposit-methods__introduction-section,
.page-beginner-guide-deposit-methods__methods-overview-section,
.page-beginner-guide-deposit-methods__detailed-methods-section,
.page-beginner-guide-deposit-methods__important-notes-section,
.page-beginner-guide-deposit-methods__faq-section,
.page-beginner-guide-deposit-methods__final-cta-section {
  padding: 60px 0;
  background-color: #fff;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
}

.page-beginner-guide-deposit-methods__introduction-section p,
.page-beginner-guide-deposit-methods__methods-overview-section p {
  font-size: 1.1em;
  color: #555;
  text-align: justify;
  margin-bottom: 20px;
}

.page-beginner-guide-deposit-methods__image-full-width {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-beginner-guide-deposit-methods__method-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.page-beginner-guide-deposit-methods__method-list li {
  background-color: #e0eaf2; /* Light blue from primary */
  padding: 20px 30px;
  border-radius: 8px;
  flex: 1 1 calc(50% - 20px);
  max-width: calc(50% - 20px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  font-size: 1.1em;
  color: #003366;
  font-weight: bold;
  text-align: center;
}

.page-beginner-guide-deposit-methods__method-card {
  background-color: #fdfdfd;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 30px;
  margin-bottom: 40px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-beginner-guide-deposit-methods__method-title {
  font-size: 2em;
  color: #003366;
  margin-bottom: 20px;
  border-bottom: 2px solid #FFCC00;
  padding-bottom: 10px;
}

.page-beginner-guide-deposit-methods__method-card p {
  font-size: 1.05em;
  color: #444;
  margin-bottom: 15px;
  text-align: justify;
}

.page-beginner-guide-deposit-methods__image-small {
  width: 100%;
  max-width: 400px;
  height: auto;
  display: block;
  margin: 20px auto;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-beginner-guide-deposit-methods__method-subtitle {
  font-size: 1.5em;
  color: #1a4d80; /* Darker blue */
  margin-top: 25px;
  margin-bottom: 15px;
}

.page-beginner-guide-deposit-methods__steps-list,
.page-beginner-guide-deposit-methods__info-list,
.page-beginner-guide-deposit-methods__checklist {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #555;
}

.page-beginner-guide-deposit-methods__steps-list li,
.page-beginner-guide-deposit-methods__info-list li,
.page-beginner-guide-deposit-methods__checklist li {
  margin-bottom: 10px;
  font-size: 1.05em;
}

.page-beginner-guide-deposit-methods__steps-list li strong {
  color: #003366;
}

.page-beginner-guide-deposit-methods__note {
  background-color: #fff3cd; /* Light warning yellow */
  border-left: 5px solid #ffc107; /* Yellow border */
  padding: 15px;
  margin-top: 25px;
  margin-bottom: 25px;
  border-radius: 4px;
  color: #664d03;
  font-size: 1em;
}

.page-beginner-guide-deposit-methods__faq-item {
  background-color: #f0f5fa;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 15px;
  border: 1px solid #e0eaf2;
}

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

.page-beginner-guide-deposit-methods__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.5em;
  color: #FFCC00;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.page-beginner-guide-deposit-methods__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-beginner-guide-deposit-methods__faq-answer {
  font-size: 1.05em;
  color: #555;
  display: none;
  padding-top: 10px;
  border-top: 1px solid #e0eaf2;
  margin-top: 10px;
}

.page-beginner-guide-deposit-methods__faq-answer.active {
  display: block;
}

.page-beginner-guide-deposit-methods__final-cta-section {
  text-align: center;
  background-color: #003366;
  color: #fff;
  padding: 80px 0;
  border-radius: 8px;
}

.page-beginner-guide-deposit-methods__final-cta-section .page-beginner-guide-deposit-methods__section-title {
  color: #FFCC00;
}

.page-beginner-guide-deposit-methods__final-cta-section .page-beginner-guide-deposit-methods__section-title::after {
  background-color: #CC0000;
}

.page-beginner-guide-deposit-methods__final-cta-section p {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #e0e0e0;
}

.page-beginner-guide-deposit-methods .highlight {
  color: #FFCC00;
  font-weight: bold;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-beginner-guide-deposit-methods__hero-title {
    font-size: 2.8em;
  }
  .page-beginner-guide-deposit-methods__hero-subtitle {
    font-size: 1.3em;
  }
  .page-beginner-guide-deposit-methods__section-title {
    font-size: 2em;
  }
  .page-beginner-guide-deposit-methods__method-list li {
    flex: 1 1 calc(100% - 20px);
    max-width: calc(100% - 20px);
  }
}

@media (max-width: 768px) {
  .page-beginner-guide-deposit-methods__hero-section {
    padding: 80px 0;
  }
  .page-beginner-guide-deposit-methods__hero-title {
    font-size: 2.2em;
  }
  .page-beginner-guide-deposit-methods__hero-subtitle {
    font-size: 1.1em;
  }
  .page-beginner-guide-deposit-methods__cta-button {
    padding: 12px 25px;
    font-size: 1.1em;
  }
  .page-beginner-guide-deposit-methods__section-title {
    font-size: 1.8em;
  }
  .page-beginner-guide-deposit-methods__introduction-section,
  .page-beginner-guide-deposit-methods__methods-overview-section,
  .page-beginner-guide-deposit-methods__detailed-methods-section,
  .page-beginner-guide-deposit-methods__important-notes-section,
  .page-beginner-guide-deposit-methods__faq-section,
  .page-beginner-guide-deposit-methods__final-cta-section {
    padding: 40px 0;
  }
  .page-beginner-guide-deposit-methods__method-title {
    font-size: 1.8em;
  }
  .page-beginner-guide-deposit-methods__method-subtitle {
    font-size: 1.3em;
  }
  .page-beginner-guide-deposit-methods__faq-question {
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-beginner-guide-deposit-methods__hero-title {
    font-size: 1.8em;
  }
  .page-beginner-guide-deposit-methods__hero-subtitle {
    font-size: 1em;
  }
  .page-beginner-guide-deposit-methods__cta-button {
    padding: 10px 20px;
    font-size: 1em;
  }
  .page-beginner-guide-deposit-methods__section-title {
    font-size: 1.5em;
  }
  .page-beginner-guide-deposit-methods__method-title {
    font-size: 1.5em;
  }
  .page-beginner-guide-deposit-methods__method-card {
    padding: 20px;
  }
  .page-beginner-guide-deposit-methods__method-list li {
    padding: 15px 20px;
  }
}