/* Expectations Section (formerly Testimonials) */
.testimonials-section {
  background: var(--soft-white);
  padding: 140px 2rem;
}

.testimonials-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.expectations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 4rem auto 0;
}

.expectation-card {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.expectation-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  border-color: var(--coral-peach);
}

.expectation-text {
  font-size: 1.2rem;
  color: var(--text);
  font-weight: 500;
  margin: 0;
  line-height: 1.5;
}

/* Add a subtle accent line */
.expectation-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--soft-teal), var(--coral-peach));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.expectation-card:hover::after {
  opacity: 1;
}

@media (max-width: 768px) {
  .expectations-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}