.impact-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

.mission-vision-grid {
  gap: 1.5rem;
}

.value-prop-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.process-flow-section .who-cards-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 0;
}

.who-card {
  padding: 2rem;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  transition: all 0.3s ease;

  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto auto;
  align-items: start;
  gap: 0.5rem;

  position: relative;
  overflow: hidden;
}

.who-card.active {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--primary-color);
}

.who-card-number {
  grid-column: 1;
  grid-row: 1;
  font-size: 1.75rem;
  margin-bottom: 0;
  color: var(--primary-color);
  margin-right: 0;
  justify-self: start;
}

.who-card-content {
  display: contents;
}

.who-card-title {
  grid-column: 1;
  grid-row: 2;
  font-size: 1.75rem;
  margin-bottom: 0;
  color: white;
  text-align: center;
  width: 100%;
  line-height: 1.2;
  margin-top: 0.5rem;
}

.who-card::after {
  content: "+";
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 300;
  transition: transform 0.3s ease;
  position: absolute;
  right: 2rem;
  top: 2rem;
}

.who-card.active::after {
  transform: rotate(45deg);
  color: var(--primary-color);
}

.who-card-desc {
  display: none;

  grid-column: 1;
  grid-row: 3;

  margin-top: 2rem;
  margin-left: -2rem;
  margin-right: -2rem;
  margin-bottom: -2rem;
  width: calc(100% + 4rem);

  padding: 2rem;
  background: rgba(0, 0, 0, 0.2);
  border-top: 1px solid rgba(255, 255, 255, 0.1);

  font-size: 1.1rem;
  line-height: 1.6;
  color: #ccc;
}

.who-card.active .who-card-desc {
  display: block;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
