/* style/beginner-guide-first-deposit-withdrawal.css */
.page-beginner-guide-first-deposit-withdrawal {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0;
  background-color: #0A2342;
  line-height: 1.6;
}

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

.page-beginner-guide-first-deposit-withdrawal__section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.page-beginner-guide-first-deposit-withdrawal__section:last-child {
  border-bottom: none;
}

/* Hero Section */
.page-beginner-guide-first-deposit-withdrawal__hero-section {
  background: linear-gradient(135deg, #0A2342 0%, #1A3F6C 100%);
  padding: 100px 0;
  text-align: center;
  color: #FFFFFF;
}

.page-beginner-guide-first-deposit-withdrawal__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700;
  font-weight: bold;
  line-height: 1.2;
}

.page-beginner-guide-first-deposit-withdrawal__hero-subtitle {
  font-size: 1.3em;
  max-width: 800px;
  margin: 0 auto 40px;
  opacity: 0.9;
}

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

/* Buttons */
.page-beginner-guide-first-deposit-withdrawal__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
}

.page-beginner-guide-first-deposit-withdrawal__btn--primary {
  background-color: #FFD700; /* Gold */
  color: #0A2342; /* Dark Blue */
  border: 2px solid #FFD700;
}

.page-beginner-guide-first-deposit-withdrawal__btn--primary:hover {
  background-color: #E6C200;
  border-color: #E6C200;
}

.page-beginner-guide-first-deposit-withdrawal__btn--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold */
  border: 2px solid #FFD700;
}

.page-beginner-guide-first-deposit-withdrawal__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A2342;
}

.page-beginner-guide-first-deposit-withdrawal__btn--outline {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
  padding: 10px 20px;
  font-size: 1em;
}

.page-beginner-guide-first-deposit-withdrawal__btn--outline:hover {
  background-color: #FFD700;
  color: #0A2342;
}

.page-beginner-guide-first-deposit-withdrawal__btn--small {
  padding: 10px 20px;
  font-size: 0.9em;
  background-color: #DC3545; /* Accent Red */
  color: #FFFFFF;
  border: none;
}

.page-beginner-guide-first-deposit-withdrawal__btn--small:hover {
  background-color: #C82333;
}

/* General Section Styling */
.page-beginner-guide-first-deposit-withdrawal__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
}

.page-beginner-guide-first-deposit-withdrawal__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px;
  color: #B0B0B0;
}

.page-beginner-guide-first-deposit-withdrawal__subsection-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-top: 40px;
  margin-bottom: 20px;
  text-align: center;
}

.page-beginner-guide-first-deposit-withdrawal__list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-beginner-guide-first-deposit-withdrawal__list li {
  background: rgba(255, 255, 255, 0.05);
  margin-bottom: 10px;
  padding: 15px 20px;
  border-radius: 5px;
  position: relative;
  padding-left: 40px;
  color: #E0E0E0;
}

.page-beginner-guide-first-deposit-withdrawal__list li::before {
  content: '✓';
  color: #FFD700;
  font-weight: bold;
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
}

.page-beginner-guide-first-deposit-withdrawal__list--tips li::before,
.page-beginner-guide-first-deposit-withdrawal__list--important-notes li::before {
  content: '💡';
  font-size: 1.2em;
  left: 12px;
}

.page-beginner-guide-first-deposit-withdrawal__list--methods li::before {
  content: '➔';
  color: #DC3545;
}

/* Grid Layout */
.page-beginner-guide-first-deposit-withdrawal__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.page-beginner-guide-first-deposit-withdrawal__grid--reverse {
  grid-template-areas: "image text";
}

.page-beginner-guide-first-deposit-withdrawal__grid--reverse .page-beginner-guide-first-deposit-withdrawal__grid-item--text {
  grid-area: text;
}

.page-beginner-guide-first-deposit-withdrawal__grid--reverse .page-beginner-guide-first-deposit-withdrawal__grid-item--image {
  grid-area: image;
}

.page-beginner-guide-first-deposit-withdrawal__grid-item--text {
  padding-right: 20px;
}

.page-beginner-guide-first-deposit-withdrawal__grid-item--image {
  text-align: center;
}

.page-beginner-guide-first-deposit-withdrawal__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Step-by-step Guide */
.page-beginner-guide-first-deposit-withdrawal__step-by-step {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 50px;
}

.page-beginner-guide-first-deposit-withdrawal__step {
  background-color: #1A3F6C;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  border-left: 5px solid #FFD700;
}

.page-beginner-guide-first-deposit-withdrawal__step-icon {
  position: absolute;
  top: -20px;
  left: 20px;
  background-color: #FFD700;
  color: #0A2342;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5em;
  font-weight: bold;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-beginner-guide-first-deposit-withdrawal__step-title {
  color: #FFD700;
  font-size: 1.8em;
  margin-top: 10px;
  margin-bottom: 15px;
  padding-left: 30px; /* Adjust for icon */
}

.page-beginner-guide-first-deposit-withdrawal__step p {
  color: #E0E0E0;
  margin-bottom: 15px;
}

.page-beginner-guide-first-deposit-withdrawal__step-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.page-beginner-guide-first-deposit-withdrawal__note {
  background-color: rgba(255, 215, 0, 0.1);
  border-left: 4px solid #FFD700;
  padding: 15px;
  margin-top: 20px;
  border-radius: 5px;
  color: #FFD700;
}

/* FAQ / Troubleshooting */
.page-beginner-guide-first-deposit-withdrawal__faq-item {
  background-color: #1A3F6C;
  padding: 25px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.page-beginner-guide-first-deposit-withdrawal__faq-question {
  color: #FFD700;
  font-size: 1.5em;
  margin-bottom: 10px;
}

.page-beginner-guide-first-deposit-withdrawal__faq-answer {
  color: #E0E0E0;
  font-size: 1.1em;
}

/* CTA Section */
.page-beginner-guide-first-deposit-withdrawal__cta-section {
  background: #1A3F6C;
  padding: 80px 0;
  text-align: center;
}

.page-beginner-guide-first-deposit-withdrawal__cta-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-beginner-guide-first-deposit-withdrawal__cta-description {
  font-size: 1.2em;
  max-width: 900px;
  margin: 0 auto 40px;
  color: #B0B0B0;
}

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

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-beginner-guide-first-deposit-withdrawal__hero-title {
    font-size: 2.5em;
  }
  .page-beginner-guide-first-deposit-withdrawal__hero-subtitle {
    font-size: 1.1em;
  }
  .page-beginner-guide-first-deposit-withdrawal__section-title {
    font-size: 2em;
  }
  .page-beginner-guide-first-deposit-withdrawal__grid {
    grid-template-columns: 1fr;
    grid-template-areas: unset;
  }
  .page-beginner-guide-first-deposit-withdrawal__grid-item--text,
  .page-beginner-guide-first-deposit-withdrawal__grid-item--image {
    padding: 0;
  }
  .page-beginner-guide-first-deposit-withdrawal__grid--reverse .page-beginner-guide-first-deposit-withdrawal__grid-item--image {
    grid-area: unset;
  }
  .page-beginner-guide-first-deposit-withdrawal__grid--reverse .page-beginner-guide-first-deposit-withdrawal__grid-item--text {
    grid-area: unset;
  }
}

@media (max-width: 768px) {
  .page-beginner-guide-first-deposit-withdrawal__hero-title {
    font-size: 2em;
  }
  .page-beginner-guide-first-deposit-withdrawal__hero-subtitle {
    font-size: 1em;
  }
  .page-beginner-guide-first-deposit-withdrawal__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-beginner-guide-first-deposit-withdrawal__btn {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
  .page-beginner-guide-first-deposit-withdrawal__section {
    padding: 40px 0;
  }
  .page-beginner-guide-first-deposit-withdrawal__section-title {
    font-size: 1.8em;
  }
  .page-beginner-guide-first-deposit-withdrawal__cta-title {
    font-size: 2em;
  }
  .page-beginner-guide-first-deposit-withdrawal__cta-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-beginner-guide-first-deposit-withdrawal__step-title {
    font-size: 1.5em;
    padding-left: 20px;
  }
  .page-beginner-guide-first-deposit-withdrawal__step-icon {
    top: -15px;
    left: 15px;
    width: 30px;
    height: 30px;
    font-size: 1.2em;
  }
}

@media (max-width: 480px) {
  .page-beginner-guide-first-deposit-withdrawal__hero-title {
    font-size: 1.8em;
  }
  .page-beginner-guide-first-deposit-withdrawal__hero-subtitle {
    font-size: 0.9em;
  }
  .page-beginner-guide-first-deposit-withdrawal__section-title {
    font-size: 1.5em;
  }
  .page-beginner-guide-first-deposit-withdrawal__cta-title {
    font-size: 1.6em;
  }
}