/* style/guides-understanding-odds.css */
.page-guides-understanding-odds {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
}

.page-guides-understanding-odds__hero {
  background: linear-gradient(135deg, #007bff, #28a745);
  color: #fff;
  padding: 100px 20px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 350px;
}

.page-guides-understanding-odds__container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-guides-understanding-odds__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #fff;
  line-height: 1.2;
}

.page-guides-understanding-odds__hero-subtitle {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
}

.page-guides-understanding-odds__hero-cta {
  display: inline-block;
  background-color: #ff8400; /* Complementary to primary for strong contrast */
  color: #fff;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease;
  border: 2px solid #ff8400;
}

.page-guides-understanding-odds__hero-cta:hover {
  background-color: #d758ba; /* Complementary to secondary for strong contrast */
  border-color: #d758ba;
}

.page-guides-understanding-odds__section {
  padding: 60px 0;
  border-bottom: 1px solid #eee;
}

.page-guides-understanding-odds__section:last-of-type {
  border-bottom: none;
}

.page-guides-understanding-odds__section-title {
  font-size: 2.2em;
  color: #007bff;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 10px;
}

.page-guides-understanding-odds__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 80px;
  height: 4px;
  background-color: #28a745;
  border-radius: 2px;
}

.page-guides-understanding-odds__section p {
  margin-bottom: 1em;
  font-size: 1.05em;
  color: #444;
}

.page-guides-understanding-odds__section strong {
  color: #007bff;
}

.page-guides-understanding-odds__article {
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 8px;
  margin-bottom: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-guides-understanding-odds__article-title {
  font-size: 1.8em;
  color: #28a745;
  margin-bottom: 15px;
  border-bottom: 2px solid #e9ecef;
  padding-bottom: 10px;
}

.page-guides-understanding-odds__article p {
  font-size: 1em;
  color: #555;
}

.page-guides-understanding-odds__article ul {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 15px;
  color: #555;
}

.page-guides-understanding-odds__article ul li {
  margin-bottom: 8px;
}

.page-guides-understanding-odds__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-guides-understanding-odds__image--inline {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 80%;
}

.page-guides-understanding-odds__cta-button {
  display: inline-block;
  background-color: #007bff;
  color: #fff;
  padding: 14px 28px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.05em;
  margin-top: 20px;
  margin-right: 15px;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: 2px solid #007bff;
}

.page-guides-understanding-odds__cta-button:hover {
  background-color: #0056b3;
  transform: translateY(-2px);
}

.page-guides-understanding-odds__cta-button--secondary {
  background-color: #28a745;
  border-color: #28a745;
}

.page-guides-understanding-odds__cta-button--secondary:hover {
  background-color: #1e7e34;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-guides-understanding-odds__hero {
    padding: 80px 15px;
  }

  .page-guides-understanding-odds__hero-title {
    font-size: 2em;
  }

  .page-guides-understanding-odds__hero-subtitle {
    font-size: 1em;
  }

  .page-guides-understanding-odds__section-title {
    font-size: 1.8em;
  }

  .page-guides-understanding-odds__article-title {
    font-size: 1.5em;
  }

  .page-guides-understanding-odds__cta-button {
    display: block;
    width: 100%;
    margin-right: 0;
    margin-bottom: 15px;
  }
}

@media (max-width: 480px) {
  .page-guides-understanding-odds__hero {
    padding: 60px 10px;
  }

  .page-guides-understanding-odds__hero-title {
    font-size: 1.8em;
  }

  .page-guides-understanding-odds__hero-subtitle {
    font-size: 0.9em;
  }

  .page-guides-understanding-odds__section {
    padding: 40px 0;
  }

  .page-guides-understanding-odds__section-title {
    font-size: 1.5em;
  }

  .page-guides-understanding-odds__article-title {
    font-size: 1.3em;
  }
}