/* Basic CSS adapted for Ypsilanti Drain Cleaning */
:root {
  --ink: #14181c;
  --paper: #ffffff;
  --light: #f4f6f8;
  --accent: #2f6bff;
  --sp: 1rem;
}

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

.wrap {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.head {
  padding: 1.5rem 0;
  border-bottom: 1px solid #eee;
}

.head .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-weight: 700;
  text-decoration: none;
  color: var(--ink);
  font-size: 1.25rem;
}

nav a {
  margin-left: 1.5rem;
  color: #555;
  text-decoration: none;
}

.btn {
  display: inline-block;
  background: var(--accent);
  color: white;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
}

.section {
  padding: 4rem 0;
}

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

.hero {
  padding: 6rem 0;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero .lead {
  font-size: 1.25rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto 2rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.card {
  background: white;
  padding: 2rem;
  border: 1px solid #eee;
  border-radius: 8px;
}

.price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 2rem;
}

.compare-table th, .compare-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid #ddd;
}

.compare-table th {
  background: #eaeaea;
}

.faq-item {
  margin-bottom: 2rem;
}

.faq-item h3 {
  margin-bottom: 0.5rem;
}

.foot {
  padding: 3rem 0;
  background: var(--ink);
  color: #888;
  text-align: center;
}

img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.image-block {
  margin: 2rem 0;
  text-align: center;
}

.lead-form {
  max-width: 500px;
  background: white;
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid #eee;
  margin-top: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  font-family: inherit;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.checkbox-group input {
  margin-top: 0.25rem;
}

.checkbox-group label {
  font-weight: normal;
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 0;
}

.lead-form .btn {
  width: 100%;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
}
