.predictive-section {
    background-color: #234754;
    color: #fff;
    padding: 80px 20px;
  }
  
  .predictive-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: nowrap;
    gap: 40px;
    align-items: center;
    justify-content: center;
  }
  
  .predictive-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
  }
  
  
  .predictive-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    line-height: 1.4;
  }
  
  .predictive-content p {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 20px;
    line-height: 1.6;
  }
  
  .predictive-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
  }
  
  .predictive-list li {
    margin-bottom: 12px;
    font-size: 1rem;
  }
  
  .btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: #f0a751;
    padding: 12px 24px;
    border-radius: 8px;
    border: 2px solid #f0a751;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  .btn-secondary:hover {
    background-color: #f0a751;
    color: #234754; /* assuming this is your dark background */
  }
  
  
  /* Responsive */
  @media (max-width: 768px) {
    .predictive-container {
      flex-direction: column;
      text-align: center;
    }
  
    .predictive-content {
      flex: unset;
    }
  }
  