.page-expert-predictions-football {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: #1a1a2e; /* Inherited from shared.css, explicitly set for context */
}

.page-expert-predictions-football__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-expert-predictions-football__dark-bg {
  background-color: #017439;
  color: #ffffff;
}

.page-expert-predictions-football__light-bg {
  background-color: #ffffff;
  color: #333333;
}

.page-expert-predictions-football__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 40px;
  color: inherit; /* Inherits from parent section */
}

.page-expert-predictions-football__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: inherit;
}

.page-expert-predictions-football__center-text {
  text-align: center;
}

/* Hero Section */
.page-expert-predictions-football__hero-section {
  position: relative;
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
  padding-bottom: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.page-expert-predictions-football__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
}

.page-expert-predictions-football__main-title {
  font-size: 3em;
  margin-bottom: 20px;
  color: #ffffff;
  line-height: 1.2;
}

.page-expert-predictions-football__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #ffffff;
}

.page-expert-predictions-football__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-expert-predictions-football__btn-primary,
.page-expert-predictions-football__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
}

.page-expert-predictions-football__btn-primary {
  background-color: #C30808; /* Register/Login color */
  color: #FFFFFF; /* White text for contrast */
  border: 2px solid #C30808;
}

.page-expert-predictions-football__btn-primary:hover {
  background-color: #a00606;
  border-color: #a00606;
}

.page-expert-predictions-football__btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.page-expert-predictions-football__btn-secondary:hover {
  background-color: #ffffff;
  color: #017439;
}

.page-expert-predictions-football__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.3;
}

/* About Section */
.page-expert-predictions-football__about-section {
  padding: 80px 0;
}

/* Methodology Section */
.page-expert-predictions-football__methodology-section {
  padding: 80px 0;
}

.page-expert-predictions-football__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-expert-predictions-football__feature-item {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  color: #ffffff;
}

.page-expert-predictions-football__feature-icon {
  width: 100%;
  height: auto;
  max-width: 150px;
  margin-bottom: 20px;
  border-radius: 5px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  min-width: 200px; /* Enforce min size */
  min-height: 200px; /* Enforce min size */
  object-fit: cover;
}

.page-expert-predictions-football__feature-title {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: #ffffff;
}

/* Types Section */
.page-expert-predictions-football__types-section {
  padding: 80px 0;
}

.page-expert-predictions-football__prediction-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-expert-predictions-football__list-item {
  background-color: #f9f9f9;
  border-left: 5px solid #017439;
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 5px;
  color: #333333;
}

.page-expert-predictions-football__list-title {
  font-size: 1.4em;
  color: #017439;
  margin-bottom: 10px;
}

/* Featured Predictions Section */
.page-expert-predictions-football__featured-predictions {
  padding: 80px 0;
}

.page-expert-predictions-football__predictions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-expert-predictions-football__prediction-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
  color: #ffffff;
  text-align: left;
  display: flex;
  flex-direction: column;
}

.page-expert-predictions-football__card-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
  min-width: 200px; /* Enforce min size */
  min-height: 200px; /* Enforce min size */
}

.page-expert-predictions-football__card-title {
  font-size: 1.3em;
  margin: 20px 20px 10px 20px;
  color: #ffffff;
}

.page-expert-predictions-football__card-title a {
  color: #ffffff;
  text-decoration: none;
}

.page-expert-predictions-football__card-title a:hover {
  text-decoration: underline;
}

.page-expert-predictions-football__card-description {
  font-size: 0.95em;
  padding: 0 20px;
  margin-bottom: 15px;
  flex-grow: 1;
}

.page-expert-predictions-football__card-link {
  display: inline-block;
  background-color: #C30808;
  color: #FFFFFF;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin: 0 20px 20px 20px;
  align-self: flex-start;
  transition: background-color 0.3s ease;
}

.page-expert-predictions-football__card-link:hover {
  background-color: #a00606;
}

.page-expert-predictions-football__text-link {
  color: #FFFF00; /* Yellow for specific text links */
  text-decoration: underline;
}

.page-expert-predictions-football__text-link:hover {
  color: #ffcc00;
}

/* Benefits Section */
.page-expert-predictions-football__benefits-section {
  padding: 80px 0;
}

.page-expert-predictions-football__benefit-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-expert-predictions-football__benefit-list .page-expert-predictions-football__list-item {
  background-color: #f9f9f9;
  border-left: 5px solid #017439;
  padding: 20px;
  border-radius: 5px;
  color: #333333;
  margin-bottom: 0; /* Override default list-item margin */
}

/* FAQ Section */
.page-expert-predictions-football__faq-section {
  padding: 80px 0;
}

.page-expert-predictions-football__faq-list {
  margin-top: 40px;
}

.page-expert-predictions-football__faq-item {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #ffffff;
}

.page-expert-predictions-football__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.1em;
  background-color: rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  list-style: none; /* For details/summary */
}

.page-expert-predictions-football__faq-question::-webkit-details-marker {
  display: none;
}

.page-expert-predictions-football__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
}

.page-expert-predictions-football__faq-answer {
  padding: 0 20px 20px 20px;
  font-size: 1em;
  color: #f0f0f0;
}

/* Final CTA Section */
.page-expert-predictions-football__cta-final-section {
  padding: 80px 0;
}

.page-expert-predictions-football__large-btn {
  padding: 18px 40px;
  font-size: 1.2em;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-expert-predictions-football__main-title {
    font-size: 2.5em;
  }
  .page-expert-predictions-football__hero-description {
    font-size: 1.1em;
  }
  .page-expert-predictions-football__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-expert-predictions-football {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-expert-predictions-football__hero-section {
    padding-bottom: 60px;
  }
  .page-expert-predictions-football__main-title {
    font-size: 2em;
  }
  .page-expert-predictions-football__hero-description {
    font-size: 1em;
  }
  .page-expert-predictions-football__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-expert-predictions-football__btn-primary,
  .page-expert-predictions-football__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-expert-predictions-football__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-expert-predictions-football__features-grid,
  .page-expert-predictions-football__predictions-grid,
  .page-expert-predictions-football__benefit-list {
    grid-template-columns: 1fr;
  }
  .page-expert-predictions-football__hero-image,
  .page-expert-predictions-football__feature-icon,
  .page-expert-predictions-football__card-image,
  .page-expert-predictions-football img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-expert-predictions-football__section,
  .page-expert-predictions-football__card,
  .page-expert-predictions-football__container,
  .page-expert-predictions-football__hero-content {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-expert-predictions-football__hero-section {
    padding-top: var(--header-offset, 120px) !important; /* Ensure header offset for mobile */
  }
}

@media (max-width: 480px) {
  .page-expert-predictions-football__main-title {
    font-size: 1.8em;
  }
  .page-expert-predictions-football__hero-description {
    font-size: 0.9em;
  }
  .page-expert-predictions-football__section-title {
    font-size: 1.5em;
  }
  .page-expert-predictions-football__btn-primary,
  .page-expert-predictions-football__btn-secondary {
    padding: 12px 20px;
    font-size: 0.9em;
  }
  .page-expert-predictions-football__large-btn {
    font-size: 1em;
    padding: 15px 30px;
  }
}