.page-expert-predictions-analysis {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #FFFFFF; /* Default text color for dark background */
  background-color: #0A192F; /* Main background color */
}

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

.page-expert-predictions-analysis__hero {
  background: linear-gradient(135deg, #0A192F 0%, #1a3a61 100%);
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-expert-predictions-analysis__hero-content {
  max-width: 800px;
  z-index: 1;
}

.page-expert-predictions-analysis__hero-title {
  font-size: 3.2em;
  color: #E0B92B;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-expert-predictions-analysis__hero-description {
  font-size: 1.2em;
  color: #E6E6E6;
  margin-bottom: 30px;
}

.page-expert-predictions-analysis__hero-image {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  height: auto;
  opacity: 0.3;
  z-index: 0;
  max-width: 600px;
}

@media (min-width: 768px) {
  .page-expert-predictions-analysis__hero {
    flex-direction: row;
    text-align: left;
    padding: 100px 40px;
    justify-content: space-between;
  }

  .page-expert-predictions-analysis__hero-content {
    max-width: 50%;
  }

  .page-expert-predictions-analysis__hero-image {
    position: relative;
    width: 45%;
    opacity: 1;
    bottom: auto;
    right: auto;
    margin-left: 20px;
  }
}

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

.page-expert-predictions-analysis__section--dark {
  background-color: #0A192F;
  color: #E6E6E6;
}

.page-expert-predictions-analysis__heading {
  font-size: 2.5em;
  color: #E0B92B;
  text-align: center;
  margin-bottom: 40px;
}

.page-expert-predictions-analysis__sub-heading {
  font-size: 2em;
  color: #E0B92B;
  margin-top: 40px;
  margin-bottom: 20px;
}

.page-expert-predictions-analysis__paragraph {
  font-size: 1.1em;
  color: #E6E6E6;
  margin-bottom: 20px;
  text-align: justify;
}

.page-expert-predictions-analysis__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  margin-top: 20px;
  margin-right: 15px;
  white-space: nowrap;
}

.page-expert-predictions-analysis__btn--primary {
  background-color: #E0B92B;
  color: #0A192F;
}

.page-expert-predictions-analysis__btn--primary:hover {
  background-color: #cfa827;
}

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

.page-expert-predictions-analysis__btn--secondary:hover {
  background-color: #E0B92B;
  color: #0A192F;
}

.page-expert-predictions-analysis__btn--link {
  background-color: transparent;
  color: #E0B92B;
  border: none;
  padding: 0;
  margin-top: 10px;
  text-decoration: underline;
}

.page-expert-predictions-analysis__btn--link:hover {
  color: #cfa827;
}

.page-expert-predictions-analysis__features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-top: 40px;
}

@media (min-width: 768px) {
  .page-expert-predictions-analysis__features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.page-expert-predictions-analysis__feature-card {
  background-color: #1a3a61;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
}

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

.page-expert-predictions-analysis__feature-text {
  color: #E6E6E6;
}

.page-expert-predictions-analysis__content-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 40px;
}

.page-expert-predictions-analysis__image--right,
.page-expert-predictions-analysis__image--left,
.page-expert-predictions-analysis__image--center {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .page-expert-predictions-analysis__content-block {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }

  .page-expert-predictions-analysis__content-block .page-expert-predictions-analysis__paragraph {
    flex: 1;
    margin-right: 30px;
  }

  .page-expert-predictions-analysis__image--right {
    width: 45%;
    order: 2;
    margin-left: 30px;
    margin-right: 0;
  }

  .page-expert-predictions-analysis__image--left {
    width: 45%;
    order: 1;
    margin-right: 30px;
    margin-left: 0;
  }

  .page-expert-predictions-analysis__image--center {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}

.page-expert-predictions-analysis__steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-top: 40px;
}

@media (min-width: 768px) {
  .page-expert-predictions-analysis__steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

.page-expert-predictions-analysis__step-card {
  background-color: #1a3a61;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

.page-expert-predictions-analysis__step-text {
  color: #E6E6E6;
}

.page-expert-predictions-analysis__category {
  margin-bottom: 60px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(224, 185, 43, 0.2);
}

.page-expert-predictions-analysis__category:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.page-expert-predictions-analysis__list {
  list-style: disc inside;
  color: #E6E6E6;
  margin-left: 20px;
  font-size: 1.1em;
}

.page-expert-predictions-analysis__list li {
  margin-bottom: 10px;
}

.page-expert-predictions-analysis__list li strong {
  color: #E0B92B;
}

.page-expert-predictions-analysis__detail-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-top: 40px;
}

@media (min-width: 768px) {
  .page-expert-predictions-analysis__detail-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .page-expert-predictions-analysis__detail-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

.page-expert-predictions-analysis__detail-card {
  background-color: #1a3a61;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-expert-predictions-analysis__detail-title {
  font-size: 1.4em;
  color: #E0B92B;
  margin-bottom: 15px;
}

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

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

.page-expert-predictions-analysis__detail-description {
  color: #E6E6E6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-expert-predictions-analysis__cta {
  background: linear-gradient(90deg, #E0B92B 0%, #cfa827 100%);
  padding: 80px 20px;
  text-align: center;
  color: #0A192F;
}

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

.page-expert-predictions-analysis__cta-description {
  font-size: 1.2em;
  color: #2b2b2b;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-expert-predictions-analysis__cta .page-expert-predictions-analysis__btn {
  margin: 10px;
}

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

  .page-expert-predictions-analysis__heading {
    font-size: 2em;
  }

  .page-expert-predictions-analysis__sub-heading {
    font-size: 1.6em;
  }

  .page-expert-predictions-analysis__cta-title {
    font-size: 2em;
  }

  .page-expert-predictions-analysis__btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }

  .page-expert-predictions-analysis__image--right, 
  .page-expert-predictions-analysis__image--left {
    float: none;
    margin: 20px auto;
  }
}