/* style/beginner-guide-first-deposit.css */
.page-beginner-guide-first-deposit {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #2D3E50; /* Dark blue for primary text */
  background-color: #f8f9fa;
}

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

.page-beginner-guide-first-deposit__hero-section {
  background: linear-gradient(135deg, #2D3E50 0%, #4a627a 100%); /* Dark blue gradient */
  color: #ffffff;
  padding: 100px 0;
  text-align: center;
}

.page-beginner-guide-first-deposit__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #ffffff;
}

.page-beginner-guide-first-deposit__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #e0e0e0;
}

.page-beginner-guide-first-deposit__hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-beginner-guide-first-deposit__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: 2px solid transparent;
}

.page-beginner-guide-first-deposit__btn--primary {
  background-color: #F39C12; /* Accent orange */
  color: #ffffff;
  border-color: #F39C12;
}

.page-beginner-guide-first-deposit__btn--primary:hover {
  background-color: #d17f0a;
  border-color: #d17f0a;
}

.page-beginner-guide-first-deposit__btn--secondary {
  background-color: transparent;
  color: #F39C12; /* Accent orange */
  border-color: #F39C12;
}

.page-beginner-guide-first-deposit__btn--secondary:hover {
  background-color: #F39C12;
  color: #ffffff;
}

.page-beginner-guide-first-deposit__why-choose-section,
.page-beginner-guide-first-deposit__steps-section,
.page-beginner-guide-first-deposit__methods-section,
.page-beginner-guide-first-deposit__promo-section,
.page-beginner-guide-first-deposit__tips-section,
.page-beginner-guide-first-deposit__faq-section,
.page-beginner-guide-first-deposit__cta-section {
  padding: 60px 0;
}

.page-beginner-guide-first-deposit__section-title {
  font-size: 2.5em;
  color: #2D3E50; /* Dark blue */
  text-align: center;
  margin-bottom: 40px;
}

.page-beginner-guide-first-deposit__intro-text {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
  color: #555;
}

.page-beginner-guide-first-deposit__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  text-align: center;
}

.page-beginner-guide-first-deposit__feature-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.page-beginner-guide-first-deposit__feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
}

.page-beginner-guide-first-deposit__feature-title {
  font-size: 1.5em;
  color: #2D3E50;
  margin-bottom: 15px;
}

.page-beginner-guide-first-deposit__feature-text {
  color: #666;
  font-size: 1em;
}

.page-beginner-guide-first-deposit__steps-section {
  background-color: #f0f4f7;
}

.page-beginner-guide-first-deposit__step-by-step {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.page-beginner-guide-first-deposit__step-item {
  display: flex;
  align-items: center;
  gap: 40px;
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-beginner-guide-first-deposit__step-item:nth-child(even) {
  flex-direction: row-reverse;
}

.page-beginner-guide-first-deposit__step-number {
  font-size: 3em;
  font-weight: bold;
  color: #F39C12; /* Accent orange */
  min-width: 80px;
  text-align: center;
}

.page-beginner-guide-first-deposit__step-item > div:nth-child(2) {
  flex: 2;
}

.page-beginner-guide-first-deposit__step-title {
  font-size: 1.8em;
  color: #2D3E50;
  margin-bottom: 10px;
}

.page-beginner-guide-first-deposit__step-text {
  font-size: 1.1em;
  color: #555;
}

.page-beginner-guide-first-deposit__step-text a {
  color: #F39C12;
  text-decoration: none;
  font-weight: bold;
}

.page-beginner-guide-first-deposit__step-text a:hover {
  text-decoration: underline;
}

.page-beginner-guide-first-deposit__step-image {
  flex: 1;
  max-width: 300px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-beginner-guide-first-deposit__methods-section {
  background-color: #ffffff;
}

.page-beginner-guide-first-deposit__method-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-beginner-guide-first-deposit__method-card {
  background-color: #f0f4f7;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.page-beginner-guide-first-deposit__method-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
}

.page-beginner-guide-first-deposit__method-title {
  font-size: 1.6em;
  color: #2D3E50;
  margin-bottom: 15px;
}

.page-beginner-guide-first-deposit__method-description {
  color: #666;
  font-size: 1em;
  margin-bottom: 20px;
}

.page-beginner-guide-first-deposit__method-list {
  list-style: none;
  padding: 0;
  text-align: left;
  color: #555;
}

.page-beginner-guide-first-deposit__method-list li {
  margin-bottom: 10px;
}

.page-beginner-guide-first-deposit__promo-section {
  background-color: #2D3E50; /* Dark blue background */
  color: #ffffff;
}

.page-beginner-guide-first-deposit__promo-section .page-beginner-guide-first-deposit__section-title,
.page-beginner-guide-first-deposit__promo-section .page-beginner-guide-first-deposit__intro-text {
  color: #ffffff;
}

.page-beginner-guide-first-deposit__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  text-align: center;
}

.page-beginner-guide-first-deposit__promo-item {
  background-color: #4a627a; /* Lighter blue for cards */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.page-beginner-guide-first-deposit__promo-image {
  width: 100%;
  max-width: 250px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-beginner-guide-first-deposit__promo-title {
  font-size: 1.6em;
  color: #F39C12; /* Accent orange */
  margin-bottom: 15px;
}

.page-beginner-guide-first-deposit__promo-description {
  color: #e0e0e0;
  font-size: 1em;
}

.page-beginner-guide-first-deposit__promo-cta-text {
  text-align: center;
  margin-top: 40px;
  font-size: 1.1em;
  color: #ffffff;
}

.page-beginner-guide-first-deposit__tips-section {
  background-color: #f8f9fa;
}

.page-beginner-guide-first-deposit__tips-list {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 0 auto 40px auto;
  font-size: 1.1em;
  color: #555;
}

.page-beginner-guide-first-deposit__tips-list li {
  background-color: #ffffff;
  margin-bottom: 15px;
  padding: 20px;
  border-left: 5px solid #F39C12; /* Accent orange border */
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-beginner-guide-first-deposit__tips-image {
  display: block;
  max-width: 600px;
  width: 100%;
  margin: 40px auto 0 auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-beginner-guide-first-deposit__faq-section {
  background-color: #f0f4f7;
}

.page-beginner-guide-first-deposit__faq-accordion {
  max-width: 900px;
  margin: 0 auto;
}

.page-beginner-guide-first-deposit__faq-item {
  background-color: #ffffff;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.page-beginner-guide-first-deposit__faq-question {
  font-size: 1.2em;
  color: #2D3E50;
  padding: 20px 25px;
  cursor: pointer;
  margin: 0;
  position: relative;
  transition: background-color 0.3s ease;
}

.page-beginner-guide-first-deposit__faq-question::after {
  content: '+';
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  color: #F39C12;
}

.page-beginner-guide-first-deposit__faq-question.active::after {
  content: '-';
}

.page-beginner-guide-first-deposit__faq-answer {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-beginner-guide-first-deposit__faq-answer.active {
  max-height: 200px; /* Adjust as needed */
  padding: 15px 25px 20px 25px;
}

.page-beginner-guide-first-deposit__faq-answer p {
  margin: 0;
  color: #666;
}

.page-beginner-guide-first-deposit__cta-section {
  background-color: #F39C12; /* Accent orange */
  color: #ffffff;
  text-align: center;
  padding: 80px 0;
}

.page-beginner-guide-first-deposit__cta-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #ffffff;
}

.page-beginner-guide-first-deposit__cta-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #ffffff;
}

.page-beginner-guide-first-deposit__cta-section .page-beginner-guide-first-deposit__btn--primary {
  background-color: #2D3E50; /* Dark blue for contrast */
  border-color: #2D3E50;
}

.page-beginner-guide-first-deposit__cta-section .page-beginner-guide-first-deposit__btn--primary:hover {
  background-color: #4a627a;
  border-color: #4a627a;
}

.page-beginner-guide-first-deposit__cta-section .page-beginner-guide-first-deposit__btn--secondary {
  background-color: transparent;
  color: #2D3E50; /* Dark blue for contrast */
  border-color: #2D3E50;
}

.page-beginner-guide-first-deposit__cta-section .page-beginner-guide-first-deposit__btn--secondary:hover {
  background-color: #2D3E50;
  color: #ffffff;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-beginner-guide-first-deposit__hero-title {
    font-size: 2.5em;
  }
  .page-beginner-guide-first-deposit__section-title {
    font-size: 2em;
  }
  .page-beginner-guide-first-deposit__step-item,
  .page-beginner-guide-first-deposit__step-item:nth-child(even) {
    flex-direction: column;
    text-align: center;
  }
  .page-beginner-guide-first-deposit__step-item > div:nth-child(2) {
    order: 2;
  }
  .page-beginner-guide-first-deposit__step-image {
    order: 1;
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .page-beginner-guide-first-deposit__hero-section {
    padding: 80px 0;
  }
  .page-beginner-guide-first-deposit__hero-title {
    font-size: 2em;
  }
  .page-beginner-guide-first-deposit__hero-description {
    font-size: 1em;
  }
  .page-beginner-guide-first-deposit__hero-actions {
    flex-direction: column;
  }
  .page-beginner-guide-first-deposit__btn {
    width: 80%;
    margin: 0 auto;
  }
  .page-beginner-guide-first-deposit__section-title {
    font-size: 1.8em;
  }
  .page-beginner-guide-first-deposit__faq-question,
  .page-beginner-guide-first-deposit__faq-answer {
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-beginner-guide-first-deposit__faq-question::after {
    right: 15px;
  }
  .page-beginner-guide-first-deposit__cta-title {
    font-size: 2.2em;
  }
}

@media (max-width: 480px) {
  .page-beginner-guide-first-deposit__hero-title {
    font-size: 1.8em;
  }
  .page-beginner-guide-first-deposit__section-title {
    font-size: 1.5em;
  }
  .page-beginner-guide-first-deposit__step-number {
    font-size: 2.5em;
  }
  .page-beginner-guide-first-deposit__step-title {
    font-size: 1.5em;
  }
  .page-beginner-guide-first-deposit__btn {
    width: 100%;
  }
}