/* Global Styles */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: #222;
  line-height: 1.6;
  background: #f8f9fa;
}

h1, h2, h3 {
  margin: 0 0 10px;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 1rem;
}

.nav-links li a:hover {
  color: #007BFF;
}

/* Hero Section */
.hero {
  background: linear-gradient(to right, #007BFF, #00C6FF);
  color: white;
  text-align: center;
  padding: 4rem 2rem;
}

.hero-content h2 {
  font-size: 2.5rem;
}

.hero-content p {
  margin: 1rem 0;
  font-size: 1.1rem;
}

.btn-primary {
  display: inline-block;
  background: white;
  color: #007BFF;
  padding: 0.7rem 1.5rem;
  border-radius: 30px;
  font-weight: bold;
  transition: 0.3s;
}

.btn-primary:hover {
  background: #f1f1f1;
}

/* Features Section */
.features {
  text-align: center;
  padding: 3rem 2rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.feature-card {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: transform 0.2s;
}

.feature-card:hover {
  transform: translateY(-5px);
}

/* Download Section */
.download {
  text-align: center;
  padding: 3rem 2rem;
  background: #eef5ff;
}

.download-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.btn-secondary {
  background: #007BFF;
  color: white;
  padding: 0.7rem 1.5rem;
  border-radius: 30px;
  transition: 0.3s;
}

.btn-secondary:hover {
  background: #0056b3;
}

/* Contact Section */
.contact {
  text-align: center;
  padding: 3rem 2rem;
}

/* Footer */
.footer {
  text-align: center;
  padding: 1rem;
  background: #ddd;
  font-size: 0.9rem;
}
