/* style/resources-how-to-choose-reliable-88-football-odds.css */
.page-resources-how-to-choose-reliable-88-football-odds {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: transparent; /* Body background handled by shared.css */
}

.page-resources-how-to-choose-reliable-88-football-odds__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
  background-color: #017439; /* Main brand color for hero background */
  color: #ffffff;
  overflow: hidden;
}

.page-resources-how-to-choose-reliable-88-football-odds__hero-content {
  max-width: 900px;
  z-index: 1;
  position: relative;
  margin-bottom: 30px;
}

.page-resources-how-to-choose-reliable-88-football-odds__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #ffffff;
}

.page-resources-how-to-choose-reliable-88-football-odds__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #ffffff;
}

.page-resources-how-to-choose-reliable-88-football-odds__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.page-resources-how-to-choose-reliable-88-football-odds__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.page-resources-how-to-choose-reliable-88-football-odds__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: #ffffff; /* Light background for main content for contrast */
  color: #333333; /* Dark text for light background */
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transform: translateY(-40px); /* Lift slightly over hero */
  position: relative;
  z-index: 2;
}

.page-resources-how-to-choose-reliable-88-football-odds__section-title {
  font-size: 2.5em;
  color: #017439;
  margin-bottom: 30px;
  text-align: center;
  font-weight: bold;
}

.page-resources-how-to-choose-reliable-88-football-odds__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  line-height: 1.8;
}

.page-resources-how-to-choose-reliable-88-football-odds__criteria-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-how-to-choose-reliable-88-football-odds__card {
  background-color: #f9f9f9;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border: 1px solid #e0e0e0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  color: #333333;
}

.page-resources-how-to-choose-reliable-88-football-odds__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-resources-how-to-choose-reliable-88-football-odds__card-title {
  font-size: 1.5em;
  color: #017439;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-resources-how-to-choose-reliable-88-football-odds__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.page-resources-how-to-choose-reliable-88-football-odds__card-text {
  font-size: 1em;
  line-height: 1.7;
  flex-grow: 1;
}

.page-resources-how-to-choose-reliable-88-football-odds__mistakes-list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.page-resources-how-to-choose-reliable-88-football-odds__mistake-item {
  background-color: #fff3f3;
  border-left: 5px solid #C30808;
  padding: 20px;
  border-radius: 5px;
  color: #333333;
}

.page-resources-how-to-choose-reliable-88-football-odds__mistake-title {
  font-size: 1.4em;
  color: #C30808;
  margin-bottom: 10px;
}

.page-resources-how-to-choose-reliable-88-football-odds__steps-container {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-resources-how-to-choose-reliable-88-football-odds__step-item {
  background-color: #f0fff0;
  padding: 25px;
  border-radius: 10px;
  border: 1px solid #d4edda;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: #333333;
}

.page-resources-how-to-choose-reliable-88-football-odds__step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: #017439;
  color: #ffffff;
  font-size: 1.5em;
  font-weight: bold;
  margin-bottom: 15px;
  flex-shrink: 0;
}

.page-resources-how-to-choose-reliable-88-football-odds__step-title {
  font-size: 1.4em;
  color: #017439;
  margin-bottom: 10px;
}

.page-resources-how-to-choose-reliable-88-football-odds__cta-wrapper {
  text-align: center;
  margin-top: 50px;
}

.page-resources-how-to-choose-reliable-88-football-odds__btn-primary {
  background: #C30808; /* Custom color for register/login type buttons */
  color: #FFFF00; /* Custom color for register/login button text */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  display: inline-block;
  border: none;
  cursor: pointer;
}

.page-resources-how-to-choose-reliable-88-football-odds__btn-primary:hover {
  background-color: #a00606;
  transform: translateY(-2px);
}

.page-resources-how-to-choose-reliable-88-football-odds__btn-large {
  padding: 18px 35px;
  font-size: 1.2em;
}

/* FAQ Section */
.page-resources-how-to-choose-reliable-88-football-odds__faq-section {
  padding: 60px 20px;
  background-color: #017439; /* Brand color for FAQ background */
  color: #ffffff;
  text-align: center;
}

.page-resources-how-to-choose-reliable-88-football-odds__faq-list {
  max-width: 900px;
  margin: 40px auto 0 auto;
  text-align: left;
}

.page-resources-how-to-choose-reliable-88-football-odds__faq-item {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-resources-how-to-choose-reliable-88-football-odds__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: bold;
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.05);
  transition: background-color 0.3s ease;
}

.page-resources-how-to-choose-reliable-88-football-odds__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.page-resources-how-to-choose-reliable-88-football-odds__faq-title {
  margin: 0;
  color: #ffffff;
}

.page-resources-how-to-choose-reliable-88-football-odds__faq-toggle {
  font-size: 1.5em;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.page-resources-how-to-choose-reliable-88-football-odds__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #f0f0f0;
}

.page-resources-how-to-choose-reliable-88-football-odds__faq-item.active .page-resources-how-to-choose-reliable-88-football-odds__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show all content */
  padding: 20px;
}

.page-resources-how-to-choose-reliable-88-football-odds__faq-item.active .page-resources-how-to-choose-reliable-88-football-odds__faq-toggle {
  transform: rotate(45deg);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-resources-how-to-choose-reliable-88-football-odds__hero-title {
    font-size: 2.8em;
  }
  .page-resources-how-to-choose-reliable-88-football-odds__section-title {
    font-size: 2em;
  }
  .page-resources-how-to-choose-reliable-88-football-odds__content-area {
    padding: 40px 15px;
  }
  .page-resources-how-to-choose-reliable-88-football-odds__criteria-grid,
  .page-resources-how-to-choose-reliable-88-football-odds__steps-container {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .page-resources-how-to-choose-reliable-88-football-odds {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-resources-how-to-choose-reliable-88-football-odds__hero-section {
    padding: 40px 15px;
    padding-top: var(--header-offset, 120px) !important; /* Ensure mobile header offset */
  }
  .page-resources-how-to-choose-reliable-88-football-odds__hero-title {
    font-size: 2em;
  }
  .page-resources-how-to-choose-reliable-88-football-odds__hero-description {
    font-size: 1em;
  }
  .page-resources-how-to-choose-reliable-88-football-odds__content-area {
    padding: 30px 15px;
    transform: translateY(-20px);
  }
  .page-resources-how-to-choose-reliable-88-football-odds__section-title {
    font-size: 1.8em;
  }
  .page-resources-how-to-choose-reliable-88-football-odds__paragraph {
    font-size: 0.95em;
  }
}
}