.page-expert-predictions {
  font-family: 'Arial', sans-serif;
  color: #e5dfd3; /* Light grey for text on dark background */
  background-color: #1A202C; /* Main dark background */
  line-height: 1.6;
}

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

.page-expert-predictions__hero-section {
  background: linear-gradient(135deg, #1A202C 0%, #3a475a 100%); /* Dark gradient */
  padding: 100px 0;
  text-align: center;
  color: #FFD700; /* Gold for hero title */
  position: relative;
  overflow: hidden;
}

.page-expert-predictions__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  color: #FFD700;
}

.page-expert-predictions__hero-subtitle {
  font-size: 1.4em;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #e5dfd3;
}

.page-expert-predictions__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #1A202C; /* Dark text on gold */
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-expert-predictions__cta-button:hover {
  background-color: #b39700; /* Darker gold on hover */
  transform: translateY(-3px);
}

.page-expert-predictions__intro-section, 
.page-expert-predictions__methodology-section, 
.page-expert-predictions__fields-section, 
.page-expert-predictions__benefits-section, 
.page-expert-predictions__cta-bottom, 
.page-expert-predictions__detail-pages, 
.page-expert-predictions__faq-section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.page-expert-predictions__intro-section .page-expert-predictions__container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.page-expert-predictions__content-block {
  flex: 2;
  min-width: 300px;
}

.page-expert-predictions__image-wrapper {
  flex: 1;
  min-width: 250px;
  text-align: center;
}

.page-expert-predictions__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-expert-predictions__image-wrapper--full-width {
  flex: 1 1 100%;
  margin-top: 40px;
}

.page-expert-predictions__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for section titles */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-expert-predictions__section-title .highlight {
  color: #FFD700;
}

.page-expert-predictions__item-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: bold;
}

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

.page-expert-predictions__methodology-item, 
.page-expert-predictions__field-item, 
.page-expert-predictions__benefit-item {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.page-expert-predictions__methodology-item:hover, 
.page-expert-predictions__field-item:hover, 
.page-expert-predictions__benefit-item:hover {
  transform: translateY(-5px);
}

.page-expert-predictions__benefit-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-expert-predictions__cta-bottom {
  text-align: center;
  background-color: #0d1015; /* Slightly lighter dark for CTA background */
  padding: 80px 0;
}

.page-expert-predictions__cta-bottom .page-expert-predictions__section-title {
  color: #FFD700;
}

.page-expert-predictions__cta-bottom p {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #e5dfd3;
}

.page-expert-predictions__cta-button--large {
  padding: 18px 40px;
  font-size: 1.4em;
}

.page-expert-predictions__responsible-gambling {
  font-size: 0.9em;
  margin-top: 30px;
  color: #767980; /* Muted text */
}

.page-expert-predictions__detail-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-expert-predictions__detail-item {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-expert-predictions__detail-item .page-expert-predictions__item-title {
  font-size: 1.5em;
  margin-bottom: 10px;
}

.page-expert-predictions__detail-link {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-expert-predictions__detail-link:hover {
  color: #b39700;
  text-decoration: underline;
}

.page-expert-predictions__detail-description {
  font-size: 1em;
  color: #e5dfd3;
  margin-bottom: 20px;
}

.page-expert-predictions__read-more-button {
  display: inline-block;
  background-color: #FFD700;
  color: #1A202C;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9em;
  transition: background-color 0.3s ease;
}

.page-expert-predictions__read-more-button:hover {
  background-color: #b39700;
}

.page-expert-predictions__faq-accordion {
  margin-top: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-expert-predictions__faq-item {
  background-color: rgba(255, 255, 255, 0.05);
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
}

.page-expert-predictions__faq-question {
  font-size: 1.2em;
  color: #FFD700;
  padding: 20px 25px;
  margin: 0;
  cursor: pointer;
  position: relative;
  transition: background-color 0.3s ease;
  user-select: none;
}

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

.page-expert-predictions__faq-question.active::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-expert-predictions__faq-answer {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
  color: #e5dfd3;
}

.page-expert-predictions__faq-answer p {
  padding-bottom: 20px;
  margin-top: 0;
}

.page-expert-predictions__faq-question.active + .page-expert-predictions__faq-answer {
  max-height: 200px; /* Adjust based on content */
  padding-top: 15px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-expert-predictions__hero-title {
    font-size: 2.5em;
  }
  .page-expert-predictions__hero-subtitle {
    font-size: 1.1em;
  }
  .page-expert-predictions__section-title {
    font-size: 2em;
  }
  .page-expert-predictions__item-title {
    font-size: 1.5em;
  }
  .page-expert-predictions__intro-section .page-expert-predictions__container {
    flex-direction: column;
  }
  .page-expert-predictions__content-block, .page-expert-predictions__image-wrapper {
    flex: 1 1 100%;
  }
}

@media (max-width: 480px) {
  .page-expert-predictions__hero-title {
    font-size: 2em;
  }
  .page-expert-predictions__cta-button {
    font-size: 1em;
    padding: 12px 25px;
  }
  .page-expert-predictions__section-title {
    font-size: 1.8em;
  }
  .page-expert-predictions__item-title {
    font-size: 1.3em;
  }
  .page-expert-predictions__methodology-grid, 
  .page-expert-predictions__fields-grid, 
  .page-expert-predictions__benefits-grid, 
  .page-expert-predictions__detail-list {
    grid-template-columns: 1fr;
  }
  .page-expert-predictions__faq-question {
    font-size: 1em;
    padding: 15px 20px;
  }
  .page-expert-predictions__faq-question::after {
    right: 20px;
    font-size: 1.2em;
  }
}