/* style/expert-predictions-football-analysis.css */
.page-expert-predictions-football-analysis {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
}

.page-expert-predictions-football-analysis__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-expert-predictions-football-analysis__hero {
  background-color: #007bff; /* Primary color */
  background-image: linear-gradient(135deg, #007bff, #0056b3);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-expert-predictions-football-analysis__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #fff;
}

.page-expert-predictions-football-analysis__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #e0f2ff;
}

.page-expert-predictions-football-analysis__section {
  padding: 60px 0;
}

.page-expert-predictions-football-analysis__section:nth-of-type(even) {
  background-color: #f8f9fa;
}

.page-expert-predictions-football-analysis__section-title {
  font-size: 2.2em;
  color: #007bff;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-expert-predictions-football-analysis__text-center {
  text-align: center;
  margin-bottom: 30px;
  font-size: 1.1em;
  color: #555;
}

.page-expert-predictions-football-analysis__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 1em;
}

.page-expert-predictions-football-analysis__button--primary {
  background-color: #ffc107; /* Secondary color */
  color: #333;
  border: 2px solid #ffc107;
}

.page-expert-predictions-football-analysis__button--primary:hover {
  background-color: #e0a800;
  border-color: #e0a800;
}

.page-expert-predictions-football-analysis__button--secondary {
  background-color: #007bff; /* Primary color */
  color: #fff;
  border: 2px solid #007bff;
}

.page-expert-predictions-football-analysis__button--secondary:hover {
  background-color: #0056b3;
  border-color: #0056b3;
}

.page-expert-predictions-football-analysis__button--outline {
  background-color: transparent;
  color: #ffc107;
  border: 2px solid #ffc107;
  margin-left: 15px;
}

.page-expert-predictions-football-analysis__button--outline:hover {
  background-color: #ffc107;
  color: #333;
}

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

.page-expert-predictions-football-analysis__grid-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.page-expert-predictions-football-analysis__icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 2px 5px rgba(0, 123, 255, 0.3));
}

.page-expert-predictions-football-analysis__item-title {
  font-size: 1.5em;
  color: #007bff;
  margin-bottom: 15px;
}

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

.page-expert-predictions-football-analysis__method-card {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-align: center;
  padding-bottom: 30px;
}

.page-expert-predictions-football-analysis__method-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 20px;
}

.page-expert-predictions-football-analysis__card-title {
  font-size: 1.3em;
  color: #007bff;
  margin-bottom: 15px;
  padding: 0 20px;
}

.page-expert-predictions-football-analysis__method-card p {
  font-size: 0.95em;
  color: #555;
  padding: 0 20px;
}

.page-expert-predictions-football-analysis__tournament-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
}

.page-expert-predictions-football-analysis__tournament-list li {
  background-color: #e9ecef;
  border-left: 5px solid #007bff;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 1.1em;
  color: #333;
  transition: background-color 0.3s ease;
}

.page-expert-predictions-football-analysis__tournament-list li:hover {
  background-color: #dee2e6;
}

.page-expert-predictions-football-analysis__tournament-list a {
  text-decoration: none;
  color: #007bff;
  font-weight: bold;
}

.page-expert-predictions-football-analysis__tournament-list a:hover {
  color: #0056b3;
}

.page-expert-predictions-football-analysis__link--inline {
  color: #007bff;
  text-decoration: underline;
  font-weight: bold;
}

.page-expert-predictions-football-analysis__link--inline:hover {
  color: #0056b3;
}

.page-expert-predictions-football-analysis__cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: #007bff; /* Primary color */
  color: #fff;
  padding: 50px;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-expert-predictions-football-analysis__cta-image {
  max-width: 150px;
  margin-bottom: 30px;
}

.page-expert-predictions-football-analysis__cta-text h2 {
  color: #ffc107;
  margin-bottom: 20px;
}

.page-expert-predictions-football-analysis__cta-text p {
  font-size: 1.1em;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  color: #e0f2ff;
}

.page-expert-predictions-football-analysis__responsible-list {
  list-style: disc;
  padding-left: 20px;
  max-width: 800px;
  margin: 30px auto;
  color: #555;
}

.page-expert-predictions-football-analysis__responsible-list li {
  margin-bottom: 10px;
}

.page-expert-predictions-football-analysis__faq-item {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-expert-predictions-football-analysis__faq-question {
  font-size: 1.2em;
  color: #007bff;
  margin-bottom: 10px;
  cursor: pointer;
  font-weight: bold;
}

.page-expert-predictions-football-analysis__faq-answer {
  font-size: 1em;
  color: #555;
  display: block; /* Ensure it's visible by default, JS can toggle */
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-expert-predictions-football-analysis__hero-title {
    font-size: 2em;
  }

  .page-expert-predictions-football-analysis__hero-description {
    font-size: 1em;
  }

  .page-expert-predictions-football-analysis__section-title {
    font-size: 1.8em;
  }

  .page-expert-predictions-football-analysis__grid,
  .page-expert-predictions-football-analysis__method-steps {
    grid-template-columns: 1fr;
  }

  .page-expert-predictions-football-analysis__cta-content {
    padding: 30px;
  }

  .page-expert-predictions-football-analysis__button--outline {
    margin-left: 0;
    margin-top: 15px;
  }
}

@media (max-width: 480px) {
  .page-expert-predictions-football-analysis__hero-title {
    font-size: 1.6em;
  }

  .page-expert-predictions-football-analysis__section-title {
    font-size: 1.5em;
  }

  .page-expert-predictions-football-analysis__button {
    width: 100%;
    text-align: center;
  }

  .page-expert-predictions-football-analysis__button--outline {
    margin-top: 10px;
  }
}