:root {
  --primary: #2f4f4f;
  --accent: #cfae70;
  --light: #f7f7f7;
  --dark: #222;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--dark);
  line-height: 1.6;
}

header {
  background: var(--primary);
  color: white;
  text-align: center;
  padding: 4rem 1rem;
}

.logo {
  max-width: 240px;
  width: 100%;
  height: auto;
  margin-bottom: 1rem;
}

.tagline {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.container {
  max-width: 960px;
  margin: auto;
  padding: 3rem 1rem;
}

h1, h2, h3 {
  margin-top: 0;
}

.cta-button {
  background: var(--accent);
  color: black;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  font-weight: 600;
  border-radius: 4px;
}

.services, .reasons {
  list-style-type: disc;
  list-style-position: outside;
  padding-left: 1.5rem;
  margin-left: 0;
}

.services li, .reasons li {
  padding: 0.5rem 0;
}

.alt {
  background: var(--light);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.price-card {
  border: 1px solid #ddd;
  padding: 1.5rem;
  border-radius: 6px;
  background: white;
}

.price {
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--primary);
}

.reviews {
  list-style: none;
  padding-left: 0;
}

.reviews li {
  margin: 0.5rem 0;
}

.reviews a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
}

.contact-info p {
  margin: 0.3rem 0;
}

.note {
  font-size: 0.9rem;
  color: #555;
}

footer {
  text-align: center;
  padding: 1.5rem;
  background: #eee;
  font-size: 0.85rem;
}

