.founder-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .founder-section {
    grid-template-columns: minmax(300px, 1fr) 2fr;
    align-items: start;
  }
}

.founder-image img {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.founder-story {
  font-size: 1.125rem;
  line-height: 1.75;
}

.founder-story h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  color: var(--primary);
}

.founder-story p {
  margin-bottom: 1.5rem;
}

.founder-story ul {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.founder-story ul li {
  margin-bottom: 0.5rem;
}

/* Enhance existing styles */
.funding-options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.funding-option-card {
  padding: 2rem;
  background-color: #f8fafc;
  border-radius: 0.5rem;
  text-align: center;
  transition: transform 0.2s ease-in-out;
}

.funding-option-card:hover {
  transform: translateY(-5px);
}

.funding-option-card i {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.funding-option-card h3 {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.funding-option-card p {
  color: #64748b;
  line-height: 1.5;
} 