/* Minimalistic Styling */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Helvetica Neue', Arial, sans-serif; background: #fafafa; color: #333; line-height: 1.6; }

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

/* Navbar */
.navbar { display: flex; justify-content: space-between; align-items: center; padding: 1rem 2rem; background: #fff; border-bottom: 1px solid #eee; position: sticky; top: 0; }
.logo { font-weight: bold; font-size: 1.2rem; }
.nav-links { list-style: none; display: flex; gap: 1.5rem; }
.nav-links a { text-decoration: none; color: #333; font-weight: 500; }
.menu-toggle { display: none; }

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

/* Headings */
.section h2 { margin-bottom: 1rem; font-size: 1.8rem; color: #222; }

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

/* 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 */
.section h4 { margin-top: 1rem; font-weight: bold; }

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

/* Footer */
footer { text-align: center; padding: 1rem 0; color: #999; 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; border-left: 1px solid #eee; }
  .nav-links.active { display: flex; }
  .menu-toggle { display: flex; flex-direction: column; cursor: pointer; }
  .menu-toggle span { width: 25px; height: 3px; background: #333; margin: 4px 0; }
}
