/* style/latest-match-predictions.css */
.page-latest-match-predictions {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f8f8;
}

.page-latest-match-predictions__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.page-latest-match-predictions__hero-section {
  background: linear-gradient(135deg, #003366, #1a4d80);
  color: #fff;
  padding: 100px 0;
  text-align: center;
}

.page-latest-match-predictions__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFCC00;
}

.page-latest-match-predictions__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px;
}

.page-latest-match-predictions__hero-actions .page-latest-match-predictions__btn {
  margin: 0 10px;
}

/* General Section Styling */
.page-latest-match-predictions__introduction-section,
.page-latest-match-predictions__why-choose-us,
.page-latest-match-predictions__methodology-section,
.page-latest-match-predictions__benefits-section,
.page-latest-match-predictions__how-to-use,
.page-latest-match-predictions__detail-pages,
.page-latest-match-predictions__faq-section,
.page-latest-match-predictions__cta-section {
  padding: 60px 0;
  background-color: #fff;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-latest-match-predictions__introduction-section {
    background-color: #f8f8f8;
    box-shadow: none;
}

.page-latest-match-predictions__section-title {
  font-size: 2.2em;
  color: #003366;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 10px;
}

.page-latest-match-predictions__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFCC00;
  border-radius: 2px;
}

.page-latest-match-predictions p {
  margin-bottom: 1em;
  font-size: 1.05em;
  color: #444;
}

.page-latest-match-predictions strong {
  color: #003366;
}

.page-latest-match-predictions a {
  color: #003366;
  text-decoration: none;
}

.page-latest-match-predictions a:hover {
  text-decoration: underline;
  color: #FFCC00;
}

/* Buttons */
.page-latest-match-predictions__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  font-size: 1.1em;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  border: 2px solid transparent;
}

.page-latest-match-predictions__btn--primary {
  background-color: #FFCC00;
  color: #003366;
  border-color: #FFCC00;
}

.page-latest-match-predictions__btn--primary:hover {
  background-color: #e6b800;
  color: #003366;
  border-color: #e6b800;
}

.page-latest-match-predictions__btn--secondary {
  background-color: transparent;
  color: #FFCC00;
  border-color: #FFCC00;
}

.page-latest-match-predictions__btn--secondary:hover {
  background-color: #FFCC00;
  color: #003366;
}

.page-latest-match-predictions__btn--large {
  padding: 15px 30px;
  font-size: 1.2em;
}

.page-latest-match-predictions__btn--outline {
  background-color: transparent;
  color: #003366;
  border-color: #003366;
}

.page-latest-match-predictions__btn--outline:hover {
  background-color: #003366;
  color: #fff;
}

/* Features Grid */
.page-latest-match-predictions__features-grid,
.page-latest-match-predictions__benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-latest-match-predictions__feature-item,
.page-latest-match-predictions__benefit-item {
  background-color: #f0f5fa;
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.page-latest-match-predictions__feature-item:hover,
.page-latest-match-predictions__benefit-item:hover {
  transform: translateY(-5px);
}

.page-latest-match-predictions__feature-title,
.page-latest-match-predictions__benefit-title {
  font-size: 1.5em;
  color: #003366;
  margin-bottom: 15px;
}

/* Methodology List */
.page-latest-match-predictions__list {
  list-style-type: disc;
  margin-left: 20px;
  padding-left: 0;
  margin-top: 20px;
}

.page-latest-match-predictions__list li {
  margin-bottom: 10px;
  font-size: 1.05em;
  color: #444;
}

.page-latest-match-predictions__list li strong {
  color: #003366;
}

/* How-to Steps */
.page-latest-match-predictions__steps-list {
  list-style-type: decimal;
  margin-left: 20px;
  padding-left: 0;
  margin-top: 20px;
}

.page-latest-match-predictions__steps-list li {
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #444;
}

.page-latest-match-predictions__steps-list li strong {
  color: #003366;
}

/* Detail Pages Section */
.page-latest-match-predictions__detail-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-latest-match-predictions__detail-item {
  background-color: #f0f5fa;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.page-latest-match-predictions__detail-item:hover {
  transform: translateY(-5px);
}

.page-latest-match-predictions__detail-title {
  font-size: 1.6em;
  margin-bottom: 15px;
}

.page-latest-match-predictions__detail-title a {
  color: #003366;
  text-decoration: none;
}

.page-latest-match-predictions__detail-title a:hover {
  color: #FFCC00;
  text-decoration: underline;
}

.page-latest-match-predictions__detail-description {
  font-size: 1em;
  color: #555;
  margin-bottom: 20px;
}

.page-latest-match-predictions__detail-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #003366;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}

.page-latest-match-predictions__detail-button:hover {
  background-color: #002244;
}

/* FAQ Section */
.page-latest-match-predictions__faq-accordion {
  margin-top: 30px;
}

.page-latest-match-predictions__faq-item {
  background-color: #f0f5fa;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-latest-match-predictions__faq-question {
  width: 100%;
  background-color: #003366;
  color: #fff;
  padding: 18px 25px;
  text-align: left;
  font-size: 1.2em;
  font-weight: bold;
  border: none;
  cursor: pointer;
  outline: none;
  transition: background-color 0.3s ease;
  position: relative;
}

.page-latest-match-predictions__faq-question::after {
  content: '+';
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
}

.page-latest-match-predictions__faq-question.active::after {
  content: '-';
}

.page-latest-match-predictions__faq-answer {
  padding: 0 25px;
  background-color: #fff;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-latest-match-predictions__faq-answer p {
  padding: 15px 0;
  margin: 0;
  color: #555;
}

.page-latest-match-predictions__faq-question.active + .page-latest-match-predictions__faq-answer {
  max-height: 200px; /* Adjust as needed */
  padding: 15px 25px;
}

/* CTA Section */
.page-latest-match-predictions__cta-section {
  background: linear-gradient(135deg, #003366, #002244);
  color: #fff;
  text-align: center;
  padding: 80px 0;
}

.page-latest-match-predictions__cta-title {
  font-size: 2.8em;
  color: #FFCC00;
  margin-bottom: 20px;
}

.page-latest-match-predictions__cta-description {
  font-size: 1.2em;
  max-width: 900px;
  margin: 0 auto 40px;
}

/* Images */
.page-latest-match-predictions__image--full-width {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 30px;
    margin-bottom: 30px;
    display: block;
}

.page-latest-match-predictions__image--centered {
    display: block;
    margin: 30px auto;
    max-width: 80%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-latest-match-predictions__hero-title {
    font-size: 2.5em;
  }

  .page-latest-match-predictions__hero-description {
    font-size: 1em;
  }

  .page-latest-match-predictions__section-title {
    font-size: 1.8em;
  }

  .page-latest-match-predictions__features-grid,
  .page-latest-match-predictions__benefits-grid {
    grid-template-columns: 1fr;
  }

  .page-latest-match-predictions__btn--large {
    font-size: 1.1em;
    padding: 12px 25px;
  }

  .page-latest-match-predictions__cta-title {
    font-size: 2em;
  }

  .page-latest-match-predictions__faq-question {
    font-size: 1em;
    padding: 15px 20px;
  }

  .page-latest-match-predictions__faq-question::after {
    right: 20px;
  }
}

@media (max-width: 480px) {
  .page-latest-match-predictions__hero-title {
    font-size: 2em;
  }

  .page-latest-match-predictions__hero-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .page-latest-match-predictions__hero-actions .page-latest-match-predictions__btn {
    margin: 0;
  }

  .page-latest-match-predictions__cta-title {
    font-size: 1.8em;
  }
}