
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f5f7fa;
  color: #333;
  line-height: 1.6;
}

.header {
  background-color: #1e293b;
  color: white;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.8rem;
  font-weight: bold;
}

.nav a {
  color: white;
  text-decoration: none;
  margin-left: 15px;
  font-weight: 500;
}

.nav a:hover {
  text-decoration: underline;
}

.main-content {
  padding: 40px 20px;
  max-width: 1000px;
  margin: auto;
}

.about-founder {
  display: flex;
  flex-wrap: wrap;
  background-color: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  gap: 20px;
}

.founder-photo-placeholder {
  width: 300px;
  height: 300px;
  background-color: #e2e8f0;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #555;
}

.founder-text {
  flex: 1;
  min-width: 280px;
}

.footer {
  text-align: center;
  padding: 20px;
  background-color: #1e293b;
  color: white;
  margin-top: 40px;
  font-size: 0.9rem;
}

.hero {
  text-align: center;
  padding: 50px 20px;
  background-color: #e2e8f0;
  font-size: 1.6rem;
  font-weight: bold;
  color: #1e293b;
}

.info-box {
  background-color: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  margin-top: 30px;
}

.info-box h2 {
  margin-bottom: 15px;
  color: #1e293b;
}

.info-box ul {
  list-style-type: disc;
  padding-left: 20px;
}

.info-box p, .info-box li {
  font-size: 1rem;
  margin-bottom: 10px;
}
