.page-expert-predictions-data-analysis {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light grey text for contrast on dark background */
  background-color: #0A192F; /* Main dark blue background */
  line-height: 1.6;
}

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

.page-expert-predictions-data-analysis__hero-section {
  background: linear-gradient(135deg, #0A192F 0%, #2a3d58 100%); /* Dark blue gradient */
  padding: 100px 0;
  text-align: center;
  color: #FFD700; /* Gold for hero title */
}

.page-expert-predictions-data-analysis__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-expert-predictions-data-analysis__hero-description {
  font-size: 1.3em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #E0E0E0;
}

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

.page-expert-predictions-data-analysis__btn {
  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, transform 0.3s ease;
  font-size: 1.1em;
}

.page-expert-predictions-data-analysis__btn--primary {
  background-color: #FFD700; /* Gold primary button */
  color: #0A192F; /* Dark blue text on gold */
  border: 2px solid #FFD700;
}

.page-expert-predictions-data-analysis__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-expert-predictions-data-analysis__btn--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text for secondary */
  border: 2px solid #FFD700;
}

.page-expert-predictions-data-analysis__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A192F;
  transform: translateY(-3px);
}

.page-expert-predictions-data-analysis__btn--cta {
  background-color: #FFD700; /* Gold for CTA */
  color: #0A192F;
  border: 2px solid #FFD700;
  font-size: 1.2em;
  padding: 18px 35px;
}

.page-expert-predictions-data-analysis__btn--cta:hover {
  background-color: #e6c200;
  transform: translateY(-5px);
}

.page-expert-predictions-data-analysis__btn--small {
  padding: 10px 20px;
  font-size: 0.9em;
  background-color: #FFD700;
  color: #0A192F;
  border: none;
  border-radius: 5px;
}

.page-expert-predictions-data-analysis__btn--small:hover {
  background-color: #e6c200;
}

.page-expert-predictions-data-analysis__section {
  padding: 80px 0;
  text-align: center;
}

.page-expert-predictions-data-analysis__section:nth-of-type(even) {
  background-color: #1a2b47; /* Slightly lighter dark blue for alternating sections */
}

.page-expert-predictions-data-analysis__section-title {
  font-size: 2.8em;
  color: #FFD700; /* Gold for section titles */
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
}

.page-expert-predictions-data-analysis__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-expert-predictions-data-analysis__section-subtitle {
  font-size: 1.2em;
  color: #B0B0B0;
  margin-bottom: 60px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-expert-predictions-data-analysis__grid-item {
  background-color: #1a2b47; /* Darker background for grid items */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease;
}

.page-expert-predictions-data-analysis__grid-item:hover {
  transform: translateY(-10px);
}

.page-expert-predictions-data-analysis__feature-image {
  max-width: 100%;
  height: 150px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-expert-predictions-data-analysis__item-title {
  font-size: 1.8em;
  color: #FFD700; /* Gold for item titles */
  margin-bottom: 15px;
}

.page-expert-predictions-data-analysis__factors-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 50px;
}

.page-expert-predictions-data-analysis__factor-card {
  background-color: #0A192F; /* Main dark blue for factor cards */
  padding: 25px;
  border-radius: 8px;
  border: 1px solid #FFD700;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  text-align: left;
}

.page-expert-predictions-data-analysis__factor-card .page-expert-predictions-data-analysis__card-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-expert-predictions-data-analysis__mcw-technology .page-expert-predictions-data-analysis__content-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  text-align: left;
  gap: 40px;
}

.page-expert-predictions-data-analysis__mcw-technology .page-expert-predictions-data-analysis__text-content {
  flex: 1;
  min-width: 300px;
}

.page-expert-predictions-data-analysis__mcw-technology .page-expert-predictions-data-analysis__image-content {
  flex: 1;
  min-width: 300px;
}

.page-expert-predictions-data-analysis__large-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-expert-predictions-data-analysis__benefits-list {
  list-style: none;
  padding: 0;
  margin: 50px auto;
  max-width: 800px;
  text-align: left;
}

.page-expert-predictions-data-analysis__benefits-list li {
  background-color: #1a2b47; /* Slightly lighter dark blue for list items */
  margin-bottom: 15px;
  padding: 15px 25px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  font-size: 1.1em;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-expert-predictions-data-analysis__icon {
  color: #FFD700;
  font-size: 1.5em;
  margin-right: 15px;
}

.page-expert-predictions-data-analysis__cta-text {
  font-size: 1.4em;
  color: #FFD700;
  margin-top: 40px;
  margin-bottom: 30px;
}

.page-expert-predictions-data-analysis__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-expert-predictions-data-analysis__step-card {
  background-color: #0A192F; /* Dark blue for step cards */
  padding: 30px;
  border-radius: 10px;
  border: 1px solid #FFD700;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  position: relative;
  padding-top: 60px;
}

.page-expert-predictions-data-analysis__step-number {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #FFD700; /* Gold for step number */
  color: #0A192F;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2em;
  font-weight: bold;
  border: 3px solid #0A192F;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.page-expert-predictions-data-analysis__step-card .page-expert-predictions-data-analysis__card-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-expert-predictions-data-analysis__cta-download {
  font-size: 1.3em;
  color: #FFD700;
  margin-top: 60px;
  margin-bottom: 30px;
}

.page-expert-predictions-data-analysis__faq-item {
  background-color: #1a2b47;
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 8px;
  text-align: left;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-expert-predictions-data-analysis__faq-question {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-expert-predictions-data-analysis__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2em;
  color: #FFD700;
}

.page-expert-predictions-data-analysis__faq-answer {
  color: #E0E0E0;
  margin-top: 15px;
  display: none; /* Hidden by default, JS will toggle */
}

.page-expert-predictions-data-analysis__faq-item.active .page-expert-predictions-data-analysis__faq-answer {
  display: block;
}

.page-expert-predictions-data-analysis__faq-item.active .page-expert-predictions-data-analysis__faq-question::after {
  content: '-';
}

.page-expert-predictions-data-analysis__cta-final {
  background-color: #FFD700; /* Gold background for final CTA */
  color: #0A192F; /* Dark blue text on gold */
  padding: 80px 0;
  text-align: center;
}

.page-expert-predictions-data-analysis__cta-title {
  font-size: 3em;
  margin-bottom: 20px;
  color: #0A192F;
}

.page-expert-predictions-data-analysis__cta-description {
  font-size: 1.3em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #2a3d58; /* Slightly lighter dark blue for description */
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-expert-predictions-data-analysis__hero-title {
    font-size: 2.8em;
  }
  .page-expert-predictions-data-analysis__section-title {
    font-size: 2.2em;
  }
  .page-expert-predictions-data-analysis__mcw-technology .page-expert-predictions-data-analysis__content-wrapper {
    flex-direction: column;
    text-align: center;
  }
  .page-expert-predictions-data-analysis__cta-title {
    font-size: 2.5em;
  }
}

@media (max-width: 768px) {
  .page-expert-predictions-data-analysis__hero-section,
  .page-expert-predictions-data-analysis__section,
  .page-expert-predictions-data-analysis__cta-final {
    padding: 60px 0;
  }
  .page-expert-predictions-data-analysis__hero-title {
    font-size: 2.2em;
  }
  .page-expert-predictions-data-analysis__hero-description {
    font-size: 1.1em;
  }
  .page-expert-predictions-data-analysis__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-expert-predictions-data-analysis__btn {
    width: 80%;
    margin: 0 auto;
  }
  .page-expert-predictions-data-analysis__section-title {
    font-size: 1.8em;
  }
  .page-expert-predictions-data-analysis__item-title {
    font-size: 1.5em;
  }
  .page-expert-predictions-data-analysis__cta-title {
    font-size: 2em;
  }
  .page-expert-predictions-data-analysis__cta-description {
    font-size: 1.1em;
  }
  .page-expert-predictions-data-analysis__faq-question {
    font-size: 1.3em;
  }
}

@media (max-width: 480px) {
  .page-expert-predictions-data-analysis__hero-title {
    font-size: 1.8em;
  }
  .page-expert-predictions-data-analysis__section-title {
    font-size: 1.6em;
  }
  .page-expert-predictions-data-analysis__btn {
    font-size: 1em;
    padding: 12px 20px;
  }
  .page-expert-predictions-data-analysis__btn--cta {
    font-size: 1.1em;
    padding: 15px 25px;
  }
  .page-expert-predictions-data-analysis__cta-text,
  .page-expert-predictions-data-analysis__cta-download {
    font-size: 1.2em;
  }
  .page-expert-predictions-data-analysis__faq-question {
    font-size: 1.1em;
  }
}