.founder-container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 2rem;
  margin-top: 2rem;
  padding: 2rem;
  background-color: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.founder-image {
  flex: 1 1 300px;
  max-width: 350px;
  text-align: center;
}

.owner-photo {
  width: 200px; /* You can adjust this size */
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #ccc;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.founder-text {
  flex: 2 1 500px;
}

.founder-text h3 {
  font-size: 2em;
  margin-bottom: 0.5em;
  color: #333;
}

.founder-text p {
  font-size: 1.1em;
  line-height: 1.6;
  color: #555;
  margin-bottom: 1em;
}

.owner-photo {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border: 1px solid #ddd;
}

.value-cards {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.card {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 1.5rem;
  margin: 2%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  flex: 1 1 250px;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.card h3 {
  margin-top: 0;
  color: #333;
}

.card p {
  color: #555;
  font-size: 1em;
  margin-top: 0.5em;
}

