/* Minimalistic but warm style */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; background: #f0f8ff; color: #333; }

/* Container sections */
.section, .hero, table { margin: 2rem auto; max-width: 800px; padding: 2rem; background: white; border-radius: 8px; }

/* Navbar */
.navbar { display: flex; justify-content: space-between; align-items: center; padding: 1rem 2rem; background: #fff; box-shadow: 0 2px 4px rgba(0,0,0,0.1); position: sticky; top: 0; }
.logo { font-weight: bold; font-size: 1.3rem; color: #4A90E2; }
.nav-links { list-style: none; display: flex; gap: 1.5rem; }
.nav-links a { text-decoration: none; color: #4A90E2; font-weight: 500; }
.nav-links .active a { border-bottom: 2px solid #4A90E2; padding-bottom: 2px; }
.menu-toggle { display: none; background: none; border: none; font-size: 1.5rem; color: #4A90E2; }

/* Hero */
.hero { text-align: center; background: #4A90E2; color: #fff; border-radius: 8px; }
.hero h1 { font-size: 2.5rem; margin-bottom: 1rem; }
.hero p { font-size: 1.1rem; margin-bottom: 1.5rem; }
.btn { background: #50E3C2; color: #fff; padding: 0.75rem 1.5rem; text-decoration: none; border-radius: 4px; }

/* Headings */
.section h2 { margin-bottom: 1rem; color: #4A90E2; }

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

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

/* 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: #f5f5f5; }

/* FAQ & Contact */
.section h4 { margin-top: 1rem; font-weight: bold; }
.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 5px rgba(0,0,0,0.1); }
  .nav-links.active { display: flex; }
  .menu-toggle { display: block; }
}
