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

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

.page-beginner-guide-first-deposit__section-title {
  font-size: 2.5em;
  color: #1E90FF;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-beginner-guide-first-deposit__section-subtitle {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 50px;
  color: #555;
}

.page-beginner-guide-first-deposit__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  text-align: center;
  white-space: nowrap;
}

.page-beginner-guide-first-deposit__btn--primary {
  background-color: #FFD700; /* Gold */
  color: #333; /* Dark text for contrast */
  border: 2px solid #FFD700;
}

.page-beginner-guide-first-deposit__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-beginner-guide-first-deposit__btn--secondary {
  background-color: #1E90FF; /* Blue */
  color: #fff; /* White text for contrast */
  border: 2px solid #1E90FF;
}

.page-beginner-guide-first-deposit__btn--secondary:hover {
  background-color: #1565b3;
  transform: translateY(-2px);
}

.page-beginner-guide-first-deposit__text-link {
  color: #1E90FF;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-beginner-guide-first-deposit__text-link:hover {
  color: #0f4a8f;
  text-decoration: underline;
}

.page-beginner-guide-first-deposit__list {
  list-style: disc inside;
  margin-left: 20px;
  margin-bottom: 15px;
}

.page-beginner-guide-first-deposit__list li {
  margin-bottom: 8px;
}

/* Hero Section */
.page-beginner-guide-first-deposit__hero-section {
  background: linear-gradient(135deg, #1E90FF, #0f4a8f);
  padding: 80px 0;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-beginner-guide-first-deposit__hero-section .page-beginner-guide-first-deposit__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.page-beginner-guide-first-deposit__hero-content {
  max-width: 800px;
  margin: 0 auto;
}

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

.page-beginner-guide-first-deposit__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-beginner-guide-first-deposit__hero-image-wrapper {
  margin-top: 40px;
}

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

/* Why Deposit Section */
.page-beginner-guide-first-deposit__why-deposit-section {
  padding: 80px 0;
  background-color: #fff;
}

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

.page-beginner-guide-first-deposit__feature-item {
  background-color: #f0f8ff; /* Light blue background */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease;
}

.page-beginner-guide-first-deposit__feature-item:hover {
  transform: translateY(-5px);
}

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

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

/* Steps Section */
.page-beginner-guide-first-deposit__steps-section {
  padding: 80px 0;
  background-color: #f8f8f8;
}

.page-beginner-guide-first-deposit__step-item {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-bottom: 70px;
}

.page-beginner-guide-first-deposit__step-item:last-child {
  margin-bottom: 0;
}

.page-beginner-guide-first-deposit__step-item--reverse {
  flex-direction: row-reverse;
}

.page-beginner-guide-first-deposit__step-text {
  flex: 1;
}

.page-beginner-guide-first-deposit__step-title {
  font-size: 2em;
  color: #FFD700;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.3;
}

.page-beginner-guide-first-deposit__step-text p {
  margin-bottom: 20px;
  color: #444;
}

.page-beginner-guide-first-deposit__step-image-wrapper {
  flex: 1;
  text-align: center;
}

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

/* Bonus Section */
.page-beginner-guide-first-deposit__bonus-section {
  padding: 80px 0;
  background-color: #fff;
}

.page-beginner-guide-first-deposit__bonus-card {
  display: flex;
  align-items: center;
  gap: 40px;
  background-color: #f0f8ff;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  margin-bottom: 50px;
}

.page-beginner-guide-first-deposit__bonus-image {
  flex: 0 0 350px;
  max-width: 350px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-beginner-guide-first-deposit__bonus-content {
  flex: 1;
}

.page-beginner-guide-first-deposit__bonus-title {
  font-size: 2em;
  color: #1E90FF;
  margin-bottom: 15px;
}

.page-beginner-guide-first-deposit__bonus-content p {
  margin-bottom: 15px;
  color: #444;
}

.page-beginner-guide-first-deposit__terms {
  background-color: #fff8e1; /* Light gold background */
  padding: 30px;
  border-radius: 10px;
  border: 1px solid #FFD700;
}

.page-beginner-guide-first-deposit__terms-title {
  font-size: 1.8em;
  color: #b39700; /* Darker gold for contrast */
  margin-bottom: 20px;
}

.page-beginner-guide-first-deposit__terms p {
  margin-bottom: 15px;
  color: #555;
}

/* Responsible Gambling Section */
.page-beginner-guide-first-deposit__responsible-section {
  padding: 80px 0;
  background-color: #f0f8ff;
  text-align: center;
}

.page-beginner-guide-first-deposit__responsible-content {
  max-width: 800px;
  margin: 0 auto;
}

.page-beginner-guide-first-deposit__responsible-icon {
  width: 100px;
  height: auto;
  margin-bottom: 30px;
}

.page-beginner-guide-first-deposit__responsible-content p {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #444;
}

/* FAQ Section */
.page-beginner-guide-first-deposit__faq-section {
  padding: 80px 0;
  background-color: #fff;
}

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

.page-beginner-guide-first-deposit__faq-item {
  background-color: #f8f8f8;
  border: 1px solid #eee;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 25px 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.page-beginner-guide-first-deposit__faq-question {
  font-size: 1.3em;
  color: #1E90FF;
  margin-bottom: 10px;
  cursor: pointer;
  font-weight: bold;
}

.page-beginner-guide-first-deposit__faq-answer {
  font-size: 1em;
  color: #555;
  display: block; /* Initially visible for static page, JS can toggle */
}

/* CTA Section */
.page-beginner-guide-first-deposit__cta-section {
  background: linear-gradient(135deg, #FFD700, #b39700);
  padding: 80px 0;
  text-align: center;
  color: #333;
}

.page-beginner-guide-first-deposit__cta-title {
  font-size: 3em;
  margin-bottom: 20px;
  color: #1E90FF;
  font-weight: 700;
}

.page-beginner-guide-first-deposit__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-beginner-guide-first-deposit__hero-title {
    font-size: 2.8em;
  }

  .page-beginner-guide-first-deposit__step-item {
    flex-direction: column;
    text-align: center;
  }

  .page-beginner-guide-first-deposit__step-item--reverse {
    flex-direction: column;
  }

  .page-beginner-guide-first-deposit__step-image-wrapper {
    margin-top: 30px;
  }

  .page-beginner-guide-first-deposit__bonus-card {
    flex-direction: column;
    text-align: center;
  }

  .page-beginner-guide-first-deposit__bonus-image {
    max-width: 100%;
    margin-bottom: 30px;
  }

  .page-beginner-guide-first-deposit__cta-title {
    font-size: 2.5em;
  }
}

@media (max-width: 768px) {
  .page-beginner-guide-first-deposit__hero-section,
  .page-beginner-guide-first-deposit__why-deposit-section,
  .page-beginner-guide-first-deposit__steps-section,
  .page-beginner-guide-first-deposit__bonus-section,
  .page-beginner-guide-first-deposit__responsible-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: 2em;
  }

  .page-beginner-guide-first-deposit__hero-title {
    font-size: 2.2em;
  }

  .page-beginner-guide-first-deposit__hero-description {
    font-size: 1em;
  }

  .page-beginner-guide-first-deposit__step-title {
    font-size: 1.6em;
  }

  .page-beginner-guide-first-deposit__bonus-title {
    font-size: 1.8em;
  }

  .page-beginner-guide-first-deposit__terms-title {
    font-size: 1.5em;
  }

  .page-beginner-guide-first-deposit__faq-question {
    font-size: 1.1em;
  }

  .page-beginner-guide-first-deposit__cta-title {
    font-size: 2em;
  }
}

@media (max-width: 480px) {
  .page-beginner-guide-first-deposit__hero-title {
    font-size: 1.8em;
  }

  .page-beginner-guide-first-deposit__btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }

  .page-beginner-guide-first-deposit__section-title {
    font-size: 1.8em;
  }

  .page-beginner-guide-first-deposit__step-title {
    font-size: 1.4em;
  }

  .page-beginner-guide-first-deposit__bonus-title {
    font-size: 1.5em;
  }

  .page-beginner-guide-first-deposit__cta-title {
    font-size: 1.6em;
  }
}