.hero-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero-content-wrapper {
  padding-top: 60px;
  padding-bottom: 0;
  text-align: center;
  width: 100%;
}

.hero-title {
  font-size: 2rem !important;
  margin-bottom: 0.8rem;
}

.hero-subtitle {
  font-size: 1rem;
  max-width: 100%;
}

.services-main-title {
  font-size: 2rem !important;
  line-height: 1.2;
}

.section-heading-large {
  font-size: 2rem;
}

.mission-vision-grid {
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 0 1rem;
}

.mv-card.featured-mv {
  padding: 2rem;
}

.value-prop-grid {
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 0 1rem;
}

.vp-card {
  padding: 1.5rem;
}

.founders-grid-minimal {
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.founder-card-minimal {
  width: 100%;
  max-width: 300px;
  justify-content: flex-start;
  padding: 1rem;
}

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

.impact-number {
  font-size: 2.5rem;
}

.impact-label {
  font-size: 0.9rem;
}

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

.who-card {
  padding: 1.5rem;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  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.5rem;
  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.5rem;
  margin-bottom: 0;
  color: white;
  text-align: center;
  width: 100%;
  line-height: 1.2;
  margin-top: 0.5rem;
}

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

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

.who-card-desc {
  display: none;

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

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

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

  font-size: 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);
  }
}

.cta-section {
  padding: 4rem 1rem;
}

.cta-title {
  font-size: 1.6rem !important;
}

.cta-subtitle {
  font-size: 0.9rem !important;
}

.cta-action {
  flex-direction: column;
  width: 100%;
  gap: 1rem;
}

.cta-btn {
  width: 100%;
  text-align: center;
}
