/* styles.css */
:root {
  --bg: #ffffff;
  --primary: #1a73e8;
  --text: #222222;
  --text-light: #555555;
  --border: #e0e0e0;
  --font: 'Inter', sans-serif;
}

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: var(--primary);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.site-header {
  background: #f9f9f9;
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
}
.site-header h1 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
}
.site-header nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1rem;
}
.site-header nav a {
  font-weight: 500;
}
.site-header nav a.active {
  border-bottom: 2px solid var(--primary);
}

.hero {
  text-align: center;
  padding: 3rem 1rem;
}
.hero h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.hero p {
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
}

.comparison h2 {
  margin-top: 3rem;
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}
.comparison-table th,
.comparison-table td {
  border: 1px solid var(--border);
  padding: 0.75rem;
  text-align: left;
}
.comparison-table th {
  background: #f3f4f6;
  font-weight: 600;
}

.cta {
  text-align: center;
  padding: 2rem 1rem;
  background: #f9f9f9;
  margin-top: 3rem;
}
.cta h2 {
  font-size: 1.8rem;
}
.btn-primary {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: 600;
  margin-top: 1rem;
}
.btn-primary:hover {
  opacity: 0.9;
}

.site-footer {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-light);
  padding: 2rem 1rem;
  border-top: 1px solid var(--border);
}
