* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  color: #222;
  background: #f7f7f5;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  background: #1a2f1a;
  color: white;
  text-align: center;
  padding: 40px 20px 30px;
}

.header h1 {
  font-size: 2.4rem;
  margin-bottom: 6px;
  letter-spacing: -0.5px;
}

.tagline {
  font-size: 1.15rem;
  opacity: 0.9;
  margin-bottom: 4px;
}

.counties {
  font-size: 0.95rem;
  opacity: 0.75;
  margin-bottom: 16px;
}

.phone {
  display: inline-block;
  background: #c45c26;
  color: white;
  padding: 10px 22px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.2rem;
}

.phone:hover {
  background: #a84a1c;
}

/* Hero */
.hero {
  background: white;
  padding: 40px 0;
  text-align: center;
}

.hero h2 {
  font-size: 1.7rem;
  margin-bottom: 16px;
  color: #1a2f1a;
}

.hero p {
  margin-bottom: 14px;
  font-size: 1.05rem;
}

.highlight {
  background: #f0f4e8;
  padding: 14px 18px;
  border-left: 4px solid #3d6b3d;
  text-align: left;
  font-weight: 500;
}

/* Services */
.services {
  padding: 50px 0;
}

.services h2 {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 30px;
  color: #1a2f1a;
}

.service-card {
  background: white;
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  border-left: 5px solid #3d6b3d;
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: #1a2f1a;
}

.service-card p {
  margin-bottom: 10px;
}

.best-for {
  font-size: 0.95rem;
  color: #444;
  background: #f8f8f6;
  padding: 10px 12px;
  border-radius: 4px;
}

/* Form */
.quote-form {
  background: #1a2f1a;
  color: white;
  padding: 50px 0;
}

.quote-form h2 {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.form-intro {
  text-align: center;
  margin-bottom: 30px;
  opacity: 0.9;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  font-size: 0.95rem;
}

input[type="text"],
input[type="tel"],
input[type="email"],
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-family: inherit;
}

.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}

.checkbox-group label {
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.checkbox-group input {
  width: auto;
}

.submit-btn {
  width: 100%;
  background: #c45c26;
  color: white;
  border: none;
  padding: 16px;
  font-size: 1.15rem;
  font-weight: 700;
  border-radius: 6px;
  cursor: pointer;
  margin-top: 10px;
}

.submit-btn:hover {
  background: #a84a1c;
}

/* Footer */
.footer {
  background: #111;
  color: #ccc;
  text-align: center;
  padding: 30px 20px;
  font-size: 0.95rem;
}

.footer a {
  color: #c45c26;
  text-decoration: none;
  font-weight: 600;
}

.footer .small {
  margin-top: 10px;
  font-size: 0.85rem;
  opacity: 0.7;
}

/* Mobile adjustments */
@media (max-width: 600px) {
  .header h1 {
    font-size: 1.9rem;
  }
  .hero h2 {
    font-size: 1.4rem;
  }
}