/* style/blog-how-to-choose-reliable-betting-site.css */
:root {
  --primary-color: #017439;
  --secondary-color: #FFFFFF;
  --text-color-dark: #333333;
  --text-color-light: #ffffff;
  --border-color: #e0e0e0;
  --bg-light: #f9f9f9;
  --button-register: #C30808;
  --button-login: #C30808;
  --font-color-register-login: #FFFF00;
}

.page-blog-how-to-choose-reliable-betting-site {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-color-dark);
  background-color: var(--secondary-color); /* Body background is white */
}

.page-blog-how-to-choose-reliable-betting-site__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  background-color: var(--bg-light);
}

.page-blog-how-to-choose-reliable-betting-site__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.page-blog-how-to-choose-reliable-betting-site__hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-blog-how-to-choose-reliable-betting-site__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

.page-blog-how-to-choose-reliable-betting-site__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-blog-how-to-choose-reliable-betting-site__main-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -0.5px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-how-to-choose-reliable-betting-site__intro-text {
  font-size: 18px;
  color: var(--text-color-dark);
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-how-to-choose-reliable-betting-site__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--button-register); /* Using custom color for register/login buttons */
  color: var(--font-color-register-login); /* Using custom font color */
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-how-to-choose-reliable-betting-site__cta-button:hover {
  background: #a30707; /* Slightly darker red for hover */
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-blog-how-to-choose-reliable-betting-site__cta-button--large {
    padding: 18px 50px;
    font-size: 20px;
}

.page-blog-how-to-choose-reliable-betting-site__cta-button--final {
    margin-top: 20px;
    background: var(--primary-color);
    color: var(--text-color-light);
}

.page-blog-how-to-choose-reliable-betting-site__cta-button--final:hover {
    background: #005a2e;
}

.page-blog-how-to-choose-reliable-betting-site__content-section {
  padding: 40px 20px;
  background-color: var(--secondary-color);
}

.page-blog-how-to-choose-reliable-betting-site__container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
  background-color: var(--secondary-color);
  border-radius: 8px;
}

.page-blog-how-to-choose-reliable-betting-site__article p {
  margin-bottom: 15px;
  font-size: 16px;
  color: var(--text-color-dark);
}

.page-blog-how-to-choose-reliable-betting-site__article strong {
  color: var(--primary-color);
}

.page-blog-how-to-choose-reliable-betting-site__heading {
  font-size: 32px;
  color: var(--primary-color);
  margin-top: 40px;
  margin-bottom: 25px;
  font-weight: 700;
  line-height: 1.3;
}

.page-blog-how-to-choose-reliable-betting-site__sub-heading {
  font-size: 24px;
  color: var(--text-color-dark);
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 600;
  line-height: 1.4;
}

.page-blog-how-to-choose-reliable-betting-site__mini-heading {
  font-size: 20px;
  color: var(--primary-color);
  margin-top: 20px;
  margin-bottom: 10px;
  font-weight: 600;
}

.page-blog-how-to-choose-reliable-betting-site__image-wrapper {
  margin: 30px 0;
  text-align: center;
}

.page-blog-how-to-choose-reliable-betting-site__image-wrapper img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-blog-how-to-choose-reliable-betting-site__image-caption {
  font-style: italic;
  font-size: 14px;
  color: #666;
  margin-top: 10px;
}

.page-blog-how-to-choose-reliable-betting-site__unordered-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.page-blog-how-to-choose-reliable-betting-site__list-item {
  background-color: var(--bg-light);
  border-left: 4px solid var(--primary-color);
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 4px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.page-blog-how-to-choose-reliable-betting-site__list-item p {
  margin-bottom: 0;
  font-size: 16px;
}

.page-blog-how-to-choose-reliable-betting-site__list-heading {
    font-size: 20px;
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 10px;
    font-weight: 600;
}

.page-blog-how-to-choose-reliable-betting-site__cta-block {
  background-color: var(--bg-light);
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  margin-top: 40px;
  margin-bottom: 40px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-blog-how-to-choose-reliable-betting-site__cta-block p {
  font-size: 18px;
  margin-bottom: 20px;
  color: var(--text-color-dark);
}

/* FAQ styles */
details.page-blog-how-to-choose-reliable-betting-site__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  background: var(--secondary-color);
}
details.page-blog-how-to-choose-reliable-betting-site__faq-item summary.page-blog-how-to-choose-reliable-betting-site__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
}
details.page-blog-how-to-choose-reliable-betting-site__faq-item summary.page-blog-how-to-choose-reliable-betting-site__faq-question::-webkit-details-marker {
  display: none;
}
details.page-blog-how-to-choose-reliable-betting-site__faq-item summary.page-blog-how-to-choose-reliable-betting-site__faq-question:hover {
  background: var(--bg-light);
}
.page-blog-how-to-choose-reliable-betting-site__faq-qtext {
  flex: 1;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: var(--text-color-dark);
}
.page-blog-how-to-choose-reliable-betting-site__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #666;
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
}
details.page-blog-how-to-choose-reliable-betting-site__faq-item .page-blog-how-to-choose-reliable-betting-site__faq-answer {
  padding: 0 20px 20px;
  background: var(--bg-light);
  border-radius: 0 0 5px 5px;
  color: var(--text-color-dark);
}

/* Responsive styles */
@media (max-width: 768px) {
  .page-blog-how-to-choose-reliable-betting-site {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-how-to-choose-reliable-betting-site__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .page-blog-how-to-choose-reliable-betting-site__hero-image img {
    border-radius: 4px;
  }
  
  .page-blog-how-to-choose-reliable-betting-site__main-title {
    font-size: clamp(24px, 6vw, 36px);
  }

  .page-blog-how-to-choose-reliable-betting-site__intro-text {
    font-size: 16px;
  }

  .page-blog-how-to-choose-reliable-betting-site__cta-button {
    padding: 12px 30px;
    font-size: 16px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    margin-left: auto;
    margin-right: auto;
  }

  .page-blog-how-to-choose-reliable-betting-site__content-section,
  .page-blog-how-to-choose-reliable-betting-site__container,
  .page-blog-how-to-choose-reliable-betting-site__cta-block {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-how-to-choose-reliable-betting-site img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-blog-how-to-choose-reliable-betting-site__heading {
    font-size: 26px;
  }

  .page-blog-how-to-choose-reliable-betting-site__sub-heading {
    font-size: 20px;
  }

  details.page-blog-how-to-choose-reliable-betting-site__faq-item summary.page-blog-how-to-choose-reliable-betting-site__faq-question { padding: 15px; }
  .page-blog-how-to-choose-reliable-betting-site__faq-qtext { font-size: 15px; }
  .page-blog-how-to-choose-reliable-betting-site__faq-answer { padding: 0 15px 15px; }
}