/* Start custom CSS for text-editor, class: .elementor-element-2ba7847 */body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 0;
}

.section-title {
  text-align: center;
  font-size: 2.4rem;
  margin-bottom: 50px;
  color: #222;
}

.founder-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.founder-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease;
}

.founder-card:hover {
  transform: translateY(-10px);
}

.founder-photo {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 20px;
  border: 4px solid #eee;
}

.founder-name {
  font-size: 1.5rem;
  color: #111;
  margin: 10px 0 4px;
}

.founder-title {
  font-size: 1rem;
  color: #777;
  margin-bottom: 20px;
}

.founder-bio {
  font-size: 0.95rem;
  color: #444;
  padding: 0 10px;
}

.founder-quote {
  font-style: italic;
  margin-top: 20px;
  background: #f9f9f9;
  padding: 15px;
  border-left: 4px solid #222;
  border-radius: 8px;
  color: #555;
}/* End custom CSS */