:root {
  --page-beginner-guide-placing-first-bet-primary-color: #0A2342;
  --page-beginner-guide-placing-first-bet-secondary-color: #FFD700;
  --page-beginner-guide-placing-first-bet-text-light: #FFFFFF;
  --page-beginner-guide-placing-first-bet-text-dark: #1a1a1a;
  --page-beginner-guide-placing-first-bet-background-light: #f5f5f5;
  --page-beginner-guide-placing-first-bet-accent-color: #f5dcbd; /* Derived from primary color's complement */
}

.page-beginner-guide-placing-first-bet {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--page-beginner-guide-placing-first-bet-text-dark);
  background-color: var(--page-beginner-guide-placing-first-bet-background-light);
}

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

.page-beginner-guide-placing-first-bet__hero-section {
  background: linear-gradient(135deg, var(--page-beginner-guide-placing-first-bet-primary-color) 0%, #1c3e66 100%);
  color: var(--page-beginner-guide-placing-first-bet-text-light);
  padding: 100px 0;
  text-align: center;
}

.page-beginner-guide-placing-first-bet__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: var(--page-beginner-guide-placing-first-bet-secondary-color);
  font-weight: bold;
}

.page-beginner-guide-placing-first-bet__hero-subtitle {
  font-size: 1.3em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: rgba(255, 255, 255, 0.9);
}

.page-beginner-guide-placing-first-bet__cta-button {
  display: inline-block;
  background-color: var(--page-beginner-guide-placing-first-bet-secondary-color);
  color: var(--page-beginner-guide-placing-first-bet-primary-color);
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
}

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

.page-beginner-guide-placing-first-bet__cta-button--small {
    padding: 10px 20px;
    font-size: 1em;
}

.page-beginner-guide-placing-first-bet__content-section,
.page-beginner-guide-placing-first-bet__step-by-step-section,
.page-beginner-guide-placing-first-bet__tips-section,
.page-beginner-guide-placing-first-bet__benefits-section,
.page-beginner-guide-placing-first-bet__faq-section,
.page-beginner-guide-placing-first-bet__conclusion-section {
  padding: 60px 0;
}

.page-beginner-guide-placing-first-bet__content-section:nth-of-type(even),
.page-beginner-guide-placing-first-bet__tips-section:nth-of-type(even),
.page-beginner-guide-placing-first-bet__faq-section:nth-of-type(even) {
    background-color: var(--page-beginner-guide-placing-first-bet-background-light);
}

.page-beginner-guide-placing-first-bet__content-section:nth-of-type(odd),
.page-beginner-guide-placing-first-bet__step-by-step-section:nth-of-type(odd),
.page-beginner-guide-placing-first-bet__benefits-section:nth-of-type(odd),
.page-beginner-guide-placing-first-bet__conclusion-section:nth-of-type(odd) {
    background-color: #e8eef5; /* Lighter shade of primary for contrast */
}

.page-beginner-guide-placing-first-bet__section-title {
  font-size: 2.5em;
  color: var(--page-beginner-guide-placing-first-bet-primary-color);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-beginner-guide-placing-first-bet__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: var(--page-beginner-guide-placing-first-bet-secondary-color);
  margin: 15px auto 0 auto;
  border-radius: 2px;
}

.page-beginner-guide-placing-first-bet__list {
  list-style: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: var(--page-beginner-guide-placing-first-bet-text-dark);
}

.page-beginner-guide-placing-first-bet__list li {
  margin-bottom: 10px;
  font-size: 1.1em;
}

.page-beginner-guide-placing-first-bet__list li strong {
  color: var(--page-beginner-guide-placing-first-bet-primary-color);
}

.page-beginner-guide-placing-first-bet__step-card {
  background-color: var(--page-beginner-guide-placing-first-bet-text-light);
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.page-beginner-guide-placing-first-bet__step-card:hover {
  transform: translateY(-5px);
}

.page-beginner-guide-placing-first-bet__step-title {
  font-size: 1.8em;
  color: var(--page-beginner-guide-placing-first-bet-primary-color);
  margin-bottom: 20px;
  font-weight: bold;
}

.page-beginner-guide-placing-first-bet__step-card p {
  margin-bottom: 15px;
  font-size: 1.05em;
}

.page-beginner-guide-placing-first-bet__step-card ol {
  list-style: decimal;
  margin-left: 25px;
  margin-bottom: 20px;
}

.page-beginner-guide-placing-first-bet__step-card ol li {
  margin-bottom: 10px;
  font-size: 1.05em;
}

.page-beginner-guide-placing-first-bet__image-wrapper {
  margin: 30px auto;
  text-align: center;
}

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

.page-beginner-guide-placing-first-bet__image-caption {
  font-style: italic;
  font-size: 0.95em;
  color: #555;
  margin-top: 10px;
}

.page-beginner-guide-placing-first-bet__faq-item {
  background-color: var(--page-beginner-guide-placing-first-bet-text-light);
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  border: 1px solid #e0e0e0;
}

.page-beginner-guide-placing-first-bet__faq-question {
  font-size: 1.5em;
  color: var(--page-beginner-guide-placing-first-bet-primary-color);
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-beginner-guide-placing-first-bet__faq-answer {
  font-size: 1.05em;
  color: var(--page-beginner-guide-placing-first-bet-text-dark);
  display: none; /* Hidden by default, will be toggled by JS */
  padding-top: 10px;
  border-top: 1px solid #eee;
  margin-top: 10px;
}

.page-beginner-guide-placing-first-bet__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2em;
  color: var(--page-beginner-guide-placing-first-bet-secondary-color);
  transition: transform 0.3s ease;
}

.page-beginner-guide-placing-first-bet__faq-question.active::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-beginner-guide-placing-first-bet__conclusion-section {
  text-align: center;
  background-color: var(--page-beginner-guide-placing-first-bet-primary-color);
  color: var(--page-beginner-guide-placing-first-bet-text-light);
  padding: 80px 0;
}

.page-beginner-guide-placing-first-bet__conclusion-section h2 {
  color: var(--page-beginner-guide-placing-first-bet-secondary-color);
}

.page-beginner-guide-placing-first-bet__conclusion-section p {
  font-size: 1.2em;
  max-width: 900px;
  margin: 0 auto 30px auto;
  color: rgba(255, 255, 255, 0.9);
}

.page-beginner-guide-placing-first-bet a {
    color: var(--page-beginner-guide-placing-first-bet-primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-beginner-guide-placing-first-bet a:hover {
    color: var(--page-beginner-guide-placing-first-bet-secondary-color);
    text-decoration: underline;
}

.page-beginner-guide-placing-first-bet__conclusion-section a {
    color: var(--page-beginner-guide-placing-first-bet-text-light);
}

.page-beginner-guide-placing-first-bet__conclusion-section a:hover {
    color: var(--page-beginner-guide-placing-first-bet-secondary-color);
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-beginner-guide-placing-first-bet__hero-title {
    font-size: 2.5em;
  }
  .page-beginner-guide-placing-first-bet__hero-subtitle {
    font-size: 1.1em;
  }
  .page-beginner-guide-placing-first-bet__section-title {
    font-size: 2em;
  }
  .page-beginner-guide-placing-first-bet__step-title {
    font-size: 1.5em;
  }
  .page-beginner-guide-placing-first-bet__list li,
  .page-beginner-guide-placing-first-bet__step-card p,
  .page-beginner-guide-placing-first-bet__step-card ol li,
  .page-beginner-guide-placing-first-bet__faq-answer {
    font-size: 1em;
  }
  .page-beginner-guide-placing-first-bet__faq-question {
    font-size: 1.3em;
  }
}

@media (max-width: 768px) {
  .page-beginner-guide-placing-first-bet__hero-section {
    padding: 80px 0 60px;
  }
  .page-beginner-guide-placing-first-bet__hero-title {
    font-size: 2em;
  }
  .page-beginner-guide-placing-first-bet__hero-subtitle {
    font-size: 1em;
    margin-bottom: 30px;
  }
  .page-beginner-guide-placing-first-bet__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-beginner-guide-placing-first-bet__content-section,
  .page-beginner-guide-placing-first-bet__step-by-step-section,
  .page-beginner-guide-placing-first-bet__tips-section,
  .page-beginner-guide-placing-first-bet__benefits-section,
  .page-beginner-guide-placing-first-bet__faq-section,
  .page-beginner-guide-placing-first-bet__conclusion-section {
    padding: 40px 0;
  }
  .page-beginner-guide-placing-first-bet__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-beginner-guide-placing-first-bet__step-card {
    padding: 25px;
  }
  .page-beginner-guide-placing-first-bet__step-title {
    font-size: 1.3em;
  }
  .page-beginner-guide-placing-first-bet__list,
  .page-beginner-guide-placing-first-bet__step-card ol {
    margin-left: 20px;
  }
  .page-beginner-guide-placing-first-bet__faq-question {
    font-size: 1.2em;
  }
  .page-beginner-guide-placing-first-bet__conclusion-section p {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-beginner-guide-placing-first-bet__hero-title {
    font-size: 1.8em;
  }
  .page-beginner-guide-placing-first-bet__hero-subtitle {
    font-size: 0.9em;
  }
  .page-beginner-guide-placing-first-bet__section-title {
    font-size: 1.5em;
  }
  .page-beginner-guide-placing-first-bet__step-title {
    font-size: 1.2em;
  }
  .page-beginner-guide-placing-first-bet__cta-button {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-beginner-guide-placing-first-bet__list li,
  .page-beginner-guide-placing-first-bet__step-card p,
  .page-beginner-guide-placing-first-bet__step-card ol li,
  .page-beginner-guide-placing-first-bet__faq-answer {
    font-size: 0.9em;
  }
  .page-beginner-guide-placing-first-bet__faq-question {
    font-size: 1.1em;
  }
  .page-beginner-guide-placing-first-bet__list,
  .page-beginner-guide-placing-first-bet__step-card ol {
    margin-left: 15px;
  }
}