.page-resources-how-to-choose-reputable-bookmaker {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f4f7f6;
}

.page-resources-how-to-choose-reputable-bookmaker__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.page-resources-how-to-choose-reputable-bookmaker__hero {
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

.page-resources-how-to-choose-reputable-bookmaker__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-resources-how-to-choose-reputable-bookmaker__hero-description {
  font-size: 1.3em;
  max-width: 800px;
  margin: 0 auto 30px auto;
  line-height: 1.5;
}

.page-resources-how-to-choose-reputable-bookmaker__cta-button {
  display: inline-block;
  background-color: #ffc107;
  color: #333333;
  padding: 15px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-resources-how-to-choose-reputable-bookmaker__cta-button:hover {
  background-color: #e0a800;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-resources-how-to-choose-reputable-bookmaker__section {
  padding: 60px 0;
}

.page-resources-how-to-choose-reputable-bookmaker__section--alt {
  background-color: #e9ecef;
}

.page-resources-how-to-choose-reputable-bookmaker__section-title {
  font-size: 2.5em;
  color: #007bff;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  position: relative;
}

.page-resources-how-to-choose-reputable-bookmaker__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #ffc107;
  border-radius: 2px;
}

.page-resources-how-to-choose-reputable-bookmaker__subsection-title {
  font-size: 1.8em;
  color: #0056b3;
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-resources-how-to-choose-reputable-bookmaker__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-resources-how-to-choose-reputable-bookmaker__list,
.page-resources-how-to-choose-reputable-bookmaker__ordered-list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  font-size: 1.1em;
}

.page-resources-how-to-choose-reputable-bookmaker__ordered-list {
  list-style-type: decimal;
}

.page-resources-how-to-choose-reputable-bookmaker__list li,
.page-resources-how-to-choose-reputable-bookmaker__ordered-list li {
  margin-bottom: 10px;
}

.page-resources-how-to-choose-reputable-bookmaker__image-container {
  text-align: center;
  margin: 40px 0;
}

.page-resources-how-to-choose-reputable-bookmaker__section-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
  display: block;
  margin: 0 auto;
}

.page-resources-how-to-choose-reputable-bookmaker__section-image:hover {
  transform: translateY(-5px);
}

/* FAQ styles */
.page-resources-how-to-choose-reputable-bookmaker .faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-resources-how-to-choose-reputable-bookmaker .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.page-resources-how-to-choose-reputable-bookmaker .faq-question h3 {
  margin: 0;
  font-size: 1.25em;
  color: #007bff;
  font-weight: bold;
}

.page-resources-how-to-choose-reputable-bookmaker .faq-question:hover {
  background: #f0f8ff;
  border-color: #007bff;
}

.page-resources-how-to-choose-reputable-bookmaker .faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #007bff;
  transition: transform 0.3s ease;
}

.page-resources-how-to-choose-reputable-bookmaker .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 25px;
  background: #f9f9f9;
  border-top: none;
  border-radius: 0 0 8px 8px;
}

.page-resources-how-to-choose-reputable-bookmaker .faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height to contain content */
  padding: 20px 25px;
  border: 1px solid #e0e0e0;
  border-top: none;
}

.page-resources-how-to-choose-reputable-bookmaker .faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: #ffc107;
}

.page-resources-how-to-choose-reputable-bookmaker .faq-answer p {
  margin: 0;
  color: #555;
  font-size: 1.05em;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-resources-how-to-choose-reputable-bookmaker__hero-title {
    font-size: 2.5em;
  }
  .page-resources-how-to-choose-reputable-bookmaker__hero-description {
    font-size: 1.1em;
  }
  .page-resources-how-to-choose-reputable-bookmaker__section-title {
    font-size: 2em;
  }
  .page-resources-how-to-choose-reputable-bookmaker__subsection-title {
    font-size: 1.5em;
  }
  .page-resources-how-to-choose-reputable-bookmaker__paragraph,
  .page-resources-how-to-choose-reputable-bookmaker__list li,
  .page-resources-how-to-choose-reputable-bookmaker__ordered-list li,
  .page-resources-how-to-choose-reputable-bookmaker .faq-question h3,
  .page-resources-how-to-choose-reputable-bookmaker .faq-answer p {
    font-size: 1em;
  }
}

@media (max-width: 768px) {
  .page-resources-how-to-choose-reputable-bookmaker__hero {
    padding: 60px 15px;
  }
  .page-resources-how-to-choose-reputable-bookmaker__hero-title {
    font-size: 2em;
  }
  .page-resources-how-to-choose-reputable-bookmaker__hero-description {
    font-size: 1em;
  }
  .page-resources-how-to-choose-reputable-bookmaker__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-resources-how-to-choose-reputable-bookmaker__section {
    padding: 40px 0;
  }
  .page-resources-how-to-choose-reputable-bookmaker__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-resources-how-to-choose-reputable-bookmaker__subsection-title {
    font-size: 1.3em;
    margin-top: 25px;
  }
  .page-resources-how-to-choose-reputable-bookmaker__container {
    padding: 15px;
  }
  .page-resources-how-to-choose-reputable-bookmaker .faq-question {
    padding: 15px 20px;
  }
  .page-resources-how-to-choose-reputable-bookmaker .faq-question h3 {
    font-size: 1.1em;
  }
  .page-resources-how-to-choose-reputable-bookmaker .faq-toggle {
    font-size: 20px;
  }
  .page-resources-how-to-choose-reputable-bookmaker .faq-answer {
    padding: 0 20px;
  }
  .page-resources-how-to-choose-reputable-bookmaker .faq-item.active .faq-answer {
    padding: 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-resources-how-to-choose-reputable-bookmaker__hero-title {
    font-size: 1.8em;
  }
  .page-resources-how-to-choose-reputable-bookmaker__section-title {
    font-size: 1.5em;
  }
  .page-resources-how-to-choose-reputable-bookmaker__subsection-title {
    font-size: 1.2em;
  }
  .page-resources-how-to-choose-reputable-bookmaker__list,
  .page-resources-how-to-choose-reputable-bookmaker__ordered-list {
    margin-left: 15px;
  }
  .page-resources-how-to-choose-reputable-bookmaker .faq-question h3 {
    font-size: 1em;
  }
}