* { margin:0; padding:0; box-sizing:border-box; }
body {
  font-family: 'Inter', sans-serif;
  color: #111;
  background: #fff;
  line-height: 1.6;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 5%;
  position: sticky;
  top: 0;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

header nav a {
  margin-left: 1.5rem;
  text-decoration: none;
  color: #111;
  font-weight: 600;
  transition: 0.3s;
}

.logo {
  height: 50px; /* smaller, professional size */
  width: auto;  /* keeps aspect ratio */
  object-fit: contain;
}

header nav a:hover { color: #ff3e3e; }

.hero {
  text-align: center;
  padding: 10vh 5%;
  animation: fadeIn 1.5s ease-in-out;
}

.hero h1 { font-size: 3rem; font-weight: 800; margin-bottom: 1rem; }
.hero p { font-size: 1.25rem; color: #555; margin-bottom: 2rem; }
.cta {
  background: #ff3e3e;
  color: #fff;
  padding: 0.75rem 2rem;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: 0.3s;
}
.cta:hover { background: #e02d2d; }

section { padding: 8vh 5%; text-align: center; }
section h2 { font-size: 2rem; margin-bottom: 1rem; }
section p { max-width: 600px; margin: 0 auto; color: #555; }

footer { text-align: center; padding: 2rem; font-size: 0.9rem; color: #999; }

@keyframes fadeIn {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}