.page-resources-understanding-odds {
  color: #333333;
  line-height: 1.6;
  font-family: Arial, sans-serif;
  padding-top: var(--header-offset, 120px);
}

.page-resources-understanding-odds__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  background-color: #0A2463;
  color: #ffffff;
  text-align: center;
  padding: 40px 20px;
  box-sizing: border-box;
}

.page-resources-understanding-odds__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.4;
}

.page-resources-understanding-odds__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 8px;
}

.page-resources-understanding-odds__main-title {
  font-size: 2.8em;
  margin-bottom: 15px;
  color: #FFD700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.page-resources-understanding-odds__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-understanding-odds__cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #0A2463;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

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

.page-resources-understanding-odds__content-wrapper {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 992px) {
  .page-resources-understanding-odds__content-wrapper {
    grid-template-columns: 250px 1fr;
  }
}

.page-resources-understanding-odds__table-of-contents {
  background-color: #f8f8f8;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  align-self: start;
  position: sticky;
  top: calc(var(--header-offset, 120px) + 20px); /* Adjust for header and some spacing */
}

.page-resources-understanding-odds__toc-title {
  font-size: 1.5em;
  color: #0A2463;
  margin-bottom: 15px;
  border-bottom: 2px solid #FFD700;
  padding-bottom: 10px;
}

.page-resources-understanding-odds__toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-resources-understanding-odds__toc-list li {
  margin-bottom: 10px;
}

.page-resources-understanding-odds__toc-list a {
  color: #333333;
  text-decoration: none;
  transition: color 0.3s ease;
  display: block;
  padding: 5px 0;
}

.page-resources-understanding-odds__toc-list a:hover,
.page-resources-understanding-odds__toc-list a.active {
  color: #0A2463;
  font-weight: bold;
}

.page-resources-understanding-odds__article-content {
  max-width: 800px;
  margin: 0 auto;
}

.page-resources-understanding-odds__section {
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px dashed #cccccc;
}

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

.page-resources-understanding-odds__section-title {
  font-size: 2em;
  color: #0A2463;
  margin-bottom: 20px;
  border-left: 5px solid #FFD700;
  padding-left: 15px;
}

.page-resources-understanding-odds__sub-section-title {
  font-size: 1.5em;
  color: #0A2463;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-resources-understanding-odds__article-content p {
  margin-bottom: 1em;
  font-size: 1.1em;
  line-height: 1.7;
}

.page-resources-understanding-odds__article-content strong {
  color: #0A2463;
}

.page-resources-understanding-odds__list {
  list-style: disc inside;
  margin-bottom: 1em;
  padding-left: 20px;
}

.page-resources-understanding-odds__list li {
  margin-bottom: 0.5em;
  font-size: 1.1em;
}

.page-resources-understanding-odds__content-image {
  display: block;
  margin: 30px auto;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.page-resources-understanding-odds__cta-button--bottom {
  margin-top: 40px;
  display: block;
  text-align: center;
}

.page-resources-understanding-odds__related-resources {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 2px solid #FFD700;
}

.page-resources-understanding-odds__related-title {
  font-size: 1.8em;
  color: #0A2463;
  margin-bottom: 20px;
}

.page-resources-understanding-odds__related-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-resources-understanding-odds__related-list li {
  margin-bottom: 10px;
}

.page-resources-understanding-odds__related-list a {
  color: #0A2463;
  text-decoration: none;
  font-size: 1.1em;
  transition: color 0.3s ease;
}

.page-resources-understanding-odds__related-list a:hover {
  color: #FFD700;
  text-decoration: underline;
}

.page-resources-understanding-odds__back-button {
  display: inline-block;
  background-color: #0A2463;
  color: #ffffff;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-resources-understanding-odds__back-button:hover {
  background-color: #1a3e7a;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-resources-understanding-odds__main-title {
    font-size: 2em;
  }

  .page-resources-understanding-odds__hero-description {
    font-size: 1em;
  }

  .page-resources-understanding-odds__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-resources-understanding-odds__content-wrapper {
    margin: 20px auto;
    padding: 0 15px;
  }

  .page-resources-understanding-odds__table-of-contents {
    position: static;
    margin-bottom: 30px;
  }

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

  .page-resources-understanding-odds__sub-section-title {
    font-size: 1.3em;
  }

  .page-resources-understanding-odds__article-content p,
  .page-resources-understanding-odds__list li {
    font-size: 1em;
  }

  .page-resources-understanding-odds__content-image {
    max-width: 100%;
    height: auto; /* Ensure images are responsive */
  }

  /* Ensure all images within the content area are responsive and not too small */
  .page-resources-understanding-odds img {
    max-width: 100%;
    height: auto;
    min-width: 200px;
    min-height: 200px;
  }
}

@media (max-width: 480px) {
  .page-resources-understanding-odds__main-title {
    font-size: 1.8em;
  }

  .page-resources-understanding-odds__hero-description {
    font-size: 0.9em;
  }

  .page-resources-understanding-odds__cta-button {
    padding: 10px 20px;
    font-size: 0.9em;
  }

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

  .page-resources-understanding-odds__sub-section-title {
    font-size: 1.2em;
  }
}