/* === Why Projects Fall Short Section === */
.results-section {
  background: linear-gradient(to bottom, #f6f8fa 0%, #e3edf5 100%);
  padding: 3rem 1rem;
  text-align: center;
}

.results-section h2 {
  font-size: 2rem;
  margin-bottom: 2.5rem;
  color: #333;
}

.results-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: stretch;
}

.results-block {
  background: white;
  border-radius: 0.75rem;
  text-align: left;
}

.results-block h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: #4d3d2a;
}

.results-block p {
  color: #444;
  margin: 0;
}

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

  .results-section h2 {
    font-size: 2.25rem;
  }
}
