body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f7f9fb;
  color: #333;
}

.navbar {
  background-color: #fff;
  padding: 10px 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}
.logo img {
  height: 5px;
  vertical-align: middle;
}

.logo {
  font-size: 1.8em;
  font-weight: bold;
  color: #1a73e8;
}

nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #444;
  font-weight: 500;
}

.hero {
  display: flex;
  align-items: center;
  padding: 3em 5%;
  background-color: #eaf3ff;
}

.banner-img {
  max-width: 500px;
  border-radius: 20px;
  margin-right: 2em;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.hero-text {
  max-width: 600px;
}

.hero-text h1 {
  font-size: 2.5em;
  color: #1a73e8;
}

.hero-text p {
  font-size: 1.2em;
  margin-top: 10px;
  color: #555;
}

.cta-button {
  margin-top: 20px;
  display: inline-block;
  background-color: #1a73e8;
  color: white;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1em;
  transition: 0.3s;
}

.cta-button:hover {
  background-color: #0d59c4;
}

.features {
  display: flex;
  justify-content: space-around;
  padding: 3em 2em;
  background-color: #fff;
}

.feature {
  text-align: center;
  max-width: 250px;
}

.feature img {
  width: 80px;
  margin-bottom: 1em;
}

.feature h3 {
  color: #1a73e8;
}

footer {
  text-align: center;
  padding: 1.5em;
  background-color: #f1f1f1;
  font-size: 0.9em;
}
