
body {
  font-family: 'Inter', sans-serif;
  background: #F9FAFB;
  color: #111827;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.navbar {
  background: #FFFFFF;
  padding: 1rem 2rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar nav a {
  margin-left: 2rem;
  color: #007FFF;
  text-decoration: none;
  font-weight: 500;
}

.logo {
  height: 40px;
}

.hero {
  text-align: center;
  padding: 5rem 2rem;
}

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

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.btn {
  background: #007FFF;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.2s ease;
}

.btn:hover {
  background: #005FCC;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  text-align: center;
}

.footer {
  background: #F3F4F6;
  text-align: center;
  padding: 2rem;
  font-size: 0.875rem;
  color: #6B7280;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #007FFF;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  section {
    margin-top: 4rem; /* Adds vertical space between sections */
  }
  
  section:first-of-type {
    margin-top: 6rem; /* No extra margin before the first section */
  }
