/* Simple Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: Arial, sans-serif; line-height: 1.6; color: #222; background: #f9f9f9; }

/* Navbar */
.navbar { background: #00529b; color: white; display: flex; justify-content: space-between; align-items: center; padding: 1rem; }
.logo { font-size: 1.5rem; font-weight: bold; }
.nav-links { list-style: none; display: flex; gap: 1rem; }
.nav-links a { color: white; text-decoration: none; }
.menu-toggle { display: none; flex-direction: column; cursor: pointer; }
.menu-toggle .bar { width: 25px; height: 3px; background: white; margin: 3px 0; }

/* Hero */
.hero { background: white; text-align: center; padding: 4rem 1rem; }
.hero h1 { font-size: 2rem; margin-bottom: 1rem; }
.hero p { margin-bottom: 1.5rem; }
.btn { background: #00529b; color: white; padding: 0.75rem 1.5rem; text-decoration: none; border-radius: 5px; }

/* Sections */
.section { padding: 2rem 1rem; max-width: 800px; margin: 1rem auto; background: white; border-radius: 5px; }
.section h2 { margin-bottom: 1rem; }
.simple-list { list-style: disc inside; margin-left: 1rem; }

/* Features Grid */
.features { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
.feature { background: #eaf1f8; padding: 1rem; border-radius: 5px; text-align: center; }

/* Pricing */
.section p { margin-bottom: 0.5rem; }

/* FAQ */
.section h4 { margin-top: 1rem; }

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

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

/* Responsive */
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 60px; right: 0; background: #00529b; width: 200px; padding: 1rem; }
  .nav-links.active { display: flex; }
  .menu-toggle { display: flex; }
}
