/* Problems Section */
.problems {
  background: var(--color-light-gray);
  padding: var(--space-32) 0;
}

.problems .section__subtitle {
  text-align: center;
  font-size: var(--font-size-lg);
  color: var(--color-medium-gray);
  margin-top: calc(-1 * var(--space-24));
  margin-bottom: var(--space-32);
}

.problems__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-24);
  max-width: 1200px;
  margin: 0 auto;
}

.problem__card {
  background: var(--color-white);
  padding: var(--space-32) var(--space-24);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--duration-normal) var(--ease-standard);
  border: 1px solid var(--color-card-border);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: 240px;
  justify-content: flex-start;
}

.problem__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.problem__icon {
  width: 48px;
  height: 48px;
  margin-bottom: var(--space-20);
}

.problem__text {
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--color-deep-navy);
  margin: 0;
}