
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen;
  margin: 0;
  padding: 0;
  background: #fff;
  color: #333;
}
.hero {
  text-align: center;
  background: #fef9f5;
  padding: 60px 20px;
}
.logo {
  height: 200px;
  margin-bottom: 30px;
  margin-top: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}
.cta-button {
  background: #ff7f50;
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 8px;
  display: inline-block;
  margin-top: 20px;
}
.founder {
  display: flex;
  flex-wrap: wrap;
  padding: 40px 20px;
  background: #f8f8f8;
}
.founder-img {
  width: 300px;
  border-radius: 8px;
  margin-right: 20px;
}
.founder-text {
  flex: 1;
  min-width: 250px;
}
.products {
  padding: 40px 0;
  text-align: center;
}
.carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.slides {
  display: flex;
  width: 300%;
  transition: transform 0.5s ease-in-out;
}
.slides img {
  width: 100vw;
  height: auto;
  flex-shrink: 0;
}
.nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
}
.nav button {
  background-color: rgba(0, 0, 0, 0.4);
  border: none;
  color: white;
  font-size: 2rem;
  padding: 10px 15px;
  cursor: pointer;
}
footer {
  text-align: center;
  padding: 20px;
  background: #eee;
  font-size: 14px;
}
