/* General Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: #222;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Header */
.header {
  background: #fff;
  border-bottom: 1px solid #eee;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-weight: 700;
  font-size: 1.5rem;
}
.nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}
.nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}
.menu-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
}

/* Hero */
.hero {
  padding: 60px 0;
  background: #f9fafc;
}
.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.hero-text h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
.hero-text p {
  margin-bottom: 20px;
}
.btn-primary {
  background: #0a84ff;
  color: #fff;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
}
.hero-image img {
  max-width: 100%;
  border-radius: 10px;
}

/* Features */
.features {
  padding: 60px 0;
  text-align: center;
}
.features h2 {
  margin-bottom: 40px;
  font-size: 2rem;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.feature-card {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.feature-card h3 {
  margin-bottom: 10px;
}

/* CTA */
.cta {
  background: #0a84ff;
  color: #fff;
  text-align: center;
  padding: 50px 20px;
}
.cta h2 {
  margin-bottom: 20px;
}

/* Footer */
.footer {
  background: #111;
  color: #aaa;
  padding: 30px 0;
}
.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-logo {
  font-weight: 700;
  font-size: 1.2rem;
  color: #fff;
}
.footer-links {
  list-style: none;
  display: flex;
  gap: 15px;
}
.footer-links a {
  color: #aaa;
  text-decoration: none;
}
.footer-social a {
  margin-left: 10px;
  font-size: 1.2rem;
  color: #aaa;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
  }
  .nav ul {
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 20px;
    background: #fff;
    width: 200px;
    display: none;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  }
  .nav ul.active {
    display: flex;
  }
  .menu-toggle {
    display: block;
  }
}
