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

/* Base Styles */
body {
  font-family: 'Inter', sans-serif;
  background: #eef3f7;
  color: #333;
  line-height: 1.6;
}

/* 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);
  position: sticky;
  top: 0;
  z-index: 100;
}
.logo {
  font-size: 1.4rem;
  color: #1a73e8;
  font-weight: 700;
}
.nav-links {
  display: flex;
  gap: 1.5rem;
}
.nav-links a {
  color: #555;
  text-decoration: none;
  font-weight: 500;
  padding: 0.25rem 0;
  position: relative;
}
.nav-links a.active,
.nav-links a:hover {
  color: #1a73e8;
}
.nav-links a.active::after,
.nav-links a:hover::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #1a73e8;
}
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: #555;
}

/* Hero */
.hero {
  background: linear-gradient(135deg, #1a73e8 0%, #50e3c2 100%);
  color: #fff;
  text-align: center;
  padding: 6rem 2rem;
}
.hero-content {
  max-width: 600px;
  margin: auto;
}
.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}
.btn {
  background: #fff;
  color: #1a73e8;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
}

/* Benefits & Section Layout */
.section {
  background: #fff;
  margin: 2rem auto;
  padding: 2rem;
  border-radius: 8px;
  max-width: 800px;
}
.benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  padding: 4rem 2rem;
}
.benefit {
  background: #fff;
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}
.benefit h3 {
  color: #1a73e8;
  margin-bottom: 0.5rem;
}

/* Testimonials */
.testimonials {
  max-width: 600px;
  margin: 4rem auto;
  background: #fff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
  text-align: center;
}
.testimonials h2 {
  color: #1a73e8;
  margin-bottom: 1rem;
}
.testimonials blockquote {
  font-style: italic;
  color: #555;
}
.testimonials cite {
  display: block;
  margin-top: 1rem;
  color: #777;
  font-size: 0.9rem;
}

/* CTA */
.cta {
  text-align: center;
  padding: 3rem 2rem;
}
.cta h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
.btn-outline {
  color: #1a73e8;
  border: 2px solid #1a73e8;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
}

/* Lists */
.simple-list {
  list-style: disc inside;
  margin: 1rem 0;
}
.simple-list li {
  margin-bottom: 0.5rem;
}

/* Tables */
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}
th, td {
  padding: 0.75rem;
  text-align: left;
  border-bottom: 1px solid #eee;
}
th {
  background: #f5f7fa;
}

/* Contact */
.contact p {
  margin-bottom: 0.5rem;
}

/* Footer */
.footer {
  text-align: center;
  padding: 1rem 0;
  color: #777;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background: #fff;
    position: absolute;
    top: 60px;
    right: 0;
    width: 200px;
    padding: 1rem;
    box-shadow: -2px 2px 8px rgba(0,0,0,0.1);
  }
  .nav-links.active {
    display: flex;
  }
  .menu-toggle {
    display: block;
  }
}