/* style/resources-choosing-the-best-betting-app.css */

.page-resources-choosing-the-best-betting-app {
  color: #333333; /* Default dark text for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
}

.page-resources-choosing-the-best-betting-app__hero-section {
  background-color: #003366;
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.page-resources-choosing-the-best-betting-app__hero-content {
  max-width: 800px;
}

.page-resources-choosing-the-best-betting-app__hero-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-resources-choosing-the-best-betting-app__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
}

.page-resources-choosing-the-best-betting-app__cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #003366;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-resources-choosing-the-best-betting-app__cta-button:hover {
  background-color: #e6c200;
  color: #002244;
}

.page-resources-choosing-the-best-betting-app__hero-image {
  width: 100%;
  max-width: 900px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-resources-choosing-the-best-betting-app__hero-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-resources-choosing-the-best-betting-app__content-area {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  margin-top: -60px; /* Overlap with hero for visual flow */
  position: relative;
  z-index: 1;
}

.page-resources-choosing-the-best-betting-app__intro-text {
  font-size: 1.1em;
  margin-bottom: 30px;
  text-align: justify;
}

.page-resources-choosing-the-best-betting-app__heading {
  font-size: 2em;
  color: #003366;
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 2px solid #FFD700;
  padding-bottom: 10px;
}

.page-resources-choosing-the-best-betting-app__sub-heading {
  font-size: 1.6em;
  color: #003366;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-resources-choosing-the-best-betting-app__paragraph {
  margin-bottom: 20px;
  text-align: justify;
}

.page-resources-choosing-the-best-betting-app__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
}

.page-resources-choosing-the-best-betting-app__list-item {
  margin-bottom: 10px;
}

.page-resources-choosing-the-best-betting-app__image-container {
  margin: 30px 0;
  text-align: center;
}

.page-resources-choosing-the-best-betting-app__image-container img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: block; /* Ensure it behaves as a block element */
  margin: 0 auto; /* Center the image */
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px; /* Enforce minimum size */
}

.page-resources-choosing-the-best-betting-app__cta-banner {
  background-color: #003366;
  color: #ffffff;
  padding: 40px 30px;
  text-align: center;
  border-radius: 12px;
  margin-top: 50px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.page-resources-choosing-the-best-betting-app__cta-title {
  font-size: 2.2em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-resources-choosing-the-best-betting-app__cta-description {
  font-size: 1.1em;
  margin-bottom: 25px;
}

.page-resources-choosing-the-best-betting-app__cta-banner .page-resources-choosing-the-best-betting-app__cta-button {
  margin-top: 20px;
}

.page-resources-choosing-the-best-betting-app__cta-image {
  margin-top: 30px;
  max-width: 600px; /* Constraint for the CTA image */
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  border-radius: 8px;
}

.page-resources-choosing-the-best-betting-app__cta-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px; /* Enforce minimum size */
}

.page-resources-choosing-the-best-betting-app__return-link {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.page-resources-choosing-the-best-betting-app__button-link {
  display: inline-block;
  background-color: #003366;
  color: #ffffff;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-resources-choosing-the-best-betting-app__button-link:hover {
  background-color: #002244;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-resources-choosing-the-best-betting-app__hero-section {
    padding: 60px 15px;
  }

  .page-resources-choosing-the-best-betting-app__hero-title {
    font-size: 2em;
  }

  .page-resources-choosing-the-best-betting-app__hero-description {
    font-size: 1em;
  }

  .page-resources-choosing-the-best-betting-app__content-area {
    padding: 30px 15px;
    margin-top: -40px;
  }

  .page-resources-choosing-the-best-betting-app__heading {
    font-size: 1.8em;
  }

  .page-resources-choosing-the-best-betting-app__sub-heading {
    font-size: 1.4em;
  }

  .page-resources-choosing-the-best-betting-app__cta-banner {
    padding: 30px 15px;
  }

  .page-resources-choosing-the-best-betting-app__cta-title {
    font-size: 1.8em;
  }

  /* Ensure all content area images are responsive */
  .page-resources-choosing-the-best-betting-app img {
    max-width: 100%;
    height: auto;
  }
}