/* Hero Section */
.solutions-hero {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--primary-light) 0%, white 100%);
  margin-top: 80px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.solutions-hero-title {
  color: var(--primary);
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.solutions-hero-description {
  color: #666;
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}


/* Success Stories Section */
.success-stories-section {
  padding: 4rem 0 2rem;
  background: var(--background);
}

.success-stories-section .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.stories-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.stories-row.reverse {
  flex-direction: row-reverse;
}

.story-text {
  flex: 1 1 50%;
  padding: 1.5rem 1rem;
}

.story-title {
  color: var(--primary);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.story-text p {
  color: var(--text);
  font-size: 1rem;
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.story-image {
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.story-image img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}

.story-image img:hover {
  transform: scale(1.02);
}

.stories-divider {
  border: none;
  border-top: 1.5px solid var(--border);
  margin: 2.5rem 0;
}

/* Responsive Adjustments */
@media (max-width: 900px) {
  .stories-row, .stories-row.reverse {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
  
  .story-text, .story-image {
    padding: 0;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .cta-content h2 {
    font-size: 2rem;
  }
  
  .cta-content p {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .page-hero {
    padding: 6rem 0 3rem;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .story-title {
    font-size: 1.75rem;
  }
  
  .cta-content h2 {
    font-size: 1.75rem;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .cta-content .btn {
    width: 100%;
  }
}
