/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Arial", sans-serif;
}

body {
  background: #f9f9f9;
  color: #333;
  line-height: 1.6;
}

/* Navbar */
header {
  background: #222;
  color: #fff;
  padding: 15px 20px;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-links {
  list-style: none;
  display: flex;
}
.nav-links li {
  margin-left: 20px;
}
.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}
.nav-links a:hover {
  color: #f39c12;
}

/* Hero */
.hero {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(to right, #2c3e50, #3498db);
  color: #fff;
}
.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}
.hero p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}
.btn {
  display: inline-block;
  padding: 12px 25px;
  background: #f39c12;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: 0.3s;
}
.btn:hover {
  background: #e67e22;
}

/* About */
.about, .features, .blog {
  padding: 60px 20px;
  max-width: 1100px;
  margin: auto;
}
.about h2, .features h2, .blog h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 2rem;
  color: #2c3e50;
}
.about p {
  text-align: center;
  font-size: 1.1rem;
  max-width: 800px;
  margin: auto;
}

/* Features */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.feature-card {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  text-align: center;
}
.feature-card h3 {
  margin-bottom: 10px;
}

/* Blog */
.blog-post {
  background: #fff;
  padding: 20px;
  margin-bottom: 20px;
  border-left: 5px solid #3498db;
  border-radius: 8px;
}
.blog-post h3 {
  margin-bottom: 10px;
  color: #3498db;
}

/* Footer */
footer {
  background: #222;
  color: #fff;
  text-align: center;
  padding: 20px;
}
footer a {
  color: #f39c12;
  text-decoration: none;
}
footer a:hover {
  text-decoration: underline;
}
