.page-expert-predictions {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text on dark background */
  background-color: #0A1A3A;
  line-height: 1.6;
}

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

.page-expert-predictions__hero {
  background: linear-gradient(135deg, #0A1A3A 0%, #1A3A6A 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.page-expert-predictions__hero-subtitle {
  font-size: 1.4em;
  color: #D4D4D4;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-expert-predictions__section {
  padding: 80px 0;
}

.page-expert-predictions__section:nth-of-type(even) {
  background-color: #0F2A4A; /* Slightly lighter dark blue for alternating sections */
}

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

.page-expert-predictions__section-description {
  font-size: 1.1em;
  color: #B0B0B0;
  text-align: center;
  margin-bottom: 60px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-expert-predictions__about-content {
  flex: 1;
  min-width: 300px;
}

.page-expert-predictions__about-content p {
  margin-bottom: 20px;
  color: #E0E0E0;
}

.page-expert-predictions__about-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

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

.page-expert-predictions__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-expert-predictions__feature-item {
  background-color: #1A3A6A; /* Darker blue for feature cards */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-expert-predictions__feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.5);
}

.page-expert-predictions__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.7));
}

.page-expert-predictions__feature-item h3 {
  color: #FFD700;
  font-size: 1.5em;
  margin-bottom: 15px;
}

.page-expert-predictions__feature-item p {
  color: #C0C0C0;
  font-size: 1em;
}

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

.page-expert-predictions__detail-item {
  background-color: #1A3A6A;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-expert-predictions__detail-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.5);
}

.page-expert-predictions__detail-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-expert-predictions__detail-item h3 {
  font-size: 1.6em;
  margin: 20px 20px 10px;
}

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

.page-expert-predictions__detail-item h3 a:hover {
  color: #FFF;
}

.page-expert-predictions__detail-item p {
  color: #C0C0C0;
  padding: 0 20px 20px;
  font-size: 0.95em;
}

.page-expert-predictions__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.page-expert-predictions__btn--primary {
  background-color: #FFD700; /* Gold */
  color: #0A1A3A; /* Dark blue */
  border: 2px solid #FFD700;
}

.page-expert-predictions__btn--primary:hover {
  background-color: #E0C000;
  transform: translateY(-2px);
}

.page-expert-predictions__btn--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold */
  border: 2px solid #FFD700;
  margin-left: 20px;
}

.page-expert-predictions__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A1A3A;
  transform: translateY(-2px);
}

.page-expert-predictions__btn--text {
  background-color: #0A1A3A;
  color: #FFD700;
  border: 1px solid #FFD700;
  padding: 8px 15px;
  font-size: 0.9em;
  margin: 0 20px 20px;
  display: inline-block;
}

.page-expert-predictions__btn--text:hover {
  background-color: #FFD700;
  color: #0A1A3A;
}

.page-expert-predictions__success-stories {
  background-color: #0A1A3A;
}

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

.page-expert-predictions__testimonial-item {
  background-color: #1A3A6A;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  position: relative;
}

.page-expert-predictions__testimonial-item p {
  font-style: italic;
  color: #C0C0C0;
  margin-bottom: 20px;
  font-size: 1.1em;
}

.page-expert-predictions__testimonial-item h4 {
  color: #FFD700;
  font-size: 1.3em;
  margin-bottom: 5px;
}

.page-expert-predictions__testimonial-item span {
  color: #A0A0A0;
  font-size: 0.9em;
}

.page-expert-predictions__cta {
  background: linear-gradient(90deg, #0A1A3A 0%, #2A4A7A 100%);
  text-align: center;
  padding: 80px 0;
}

.page-expert-predictions__cta-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 25px;
  font-weight: bold;
}

.page-expert-predictions__cta-description {
  font-size: 1.2em;
  color: #D4D4D4;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-expert-predictions__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-expert-predictions__hero-title {
    font-size: 2.5em;
  }
  .page-expert-predictions__section-title {
    font-size: 2em;
  }
  .page-expert-predictions__grid {
    flex-direction: column;
  }
  .page-expert-predictions__about-content, .page-expert-predictions__about-image {
    min-width: unset;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .page-expert-predictions__hero {
    padding: 70px 0;
  }
  .page-expert-predictions__hero-title {
    font-size: 2em;
  }
  .page-expert-predictions__hero-subtitle {
    font-size: 1.1em;
  }
  .page-expert-predictions__section {
    padding: 60px 0;
  }
  .page-expert-predictions__section-title {
    font-size: 1.8em;
  }
  .page-expert-predictions__section-description {
    font-size: 1em;
  }
  .page-expert-predictions__feature-item h3 {
    font-size: 1.3em;
  }
  .page-expert-predictions__detail-item h3 {
    font-size: 1.4em;
  }
  .page-expert-predictions__cta-title {
    font-size: 2.2em;
  }
  .page-expert-predictions__cta-description {
    font-size: 1.1em;
  }
  .page-expert-predictions__btn--secondary {
    margin-left: 0;
    margin-top: 15px;
  }
  .page-expert-predictions__cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .page-expert-predictions__hero-title {
    font-size: 1.8em;
  }
  .page-expert-predictions__section-title {
    font-size: 1.6em;
  }
  .page-expert-predictions__cta-title {
    font-size: 1.8em;
  }
  .page-expert-predictions__btn {
    padding: 10px 20px;
    font-size: 1em;
  }
}