/* Reset default margins/padding */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body */
body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  background: #f5f5f5;
  color: #333;
}

/* Navbar */
header {
  background: #222;
  color: #fff;
  padding: 1rem;
  position: sticky;
  top: 0;
  z-index: 1000;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: auto;
}

nav .logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #00b894;
}

nav .nav-links {
  list-style: none;
  display: flex;
}

nav .nav-links li {
  margin: 0 15px;
}

nav .nav-links a {
  text-decoration: none;
  color: #fff;
  transition: color 0.3s ease;
}

nav .nav-links a:hover {
  color: #00b894;
}

/* Hero Section */
.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 90vh;
  text-align: center;
  background: linear-gradient(120deg, #74b9ff, #a29bfe);
  color: white;
  padding: 20px;
}

.hero h1 {
  font-size: 2.5rem;
}

.hero h1 span {
  color: #ffeaa7;
}

.hero p {
  margin: 15px 0;
  font-size: 1.2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.7rem 1.5rem;
  background: #00b894;
  color: white;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #019170;
}

/* Footer */
footer {
  text-align: center;
  padding: 1rem;
  background: #222;
  color: #fff;
  margin-top: 50px;
}
