
body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
  background: #fff;
  color: #1E1E1E;
  line-height: 1.6;
}

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

.site-header {
  background: #fff;
  border-bottom: 1px solid #ddd;
  padding: 1rem 0;
}

.logo {
  font-weight: 700;
  font-size: 1.5rem;
  color: #F28C28;
  text-decoration: none;
}

.site-nav {
  margin-top: 0.5rem;
}

.site-nav a {
  margin-right: 1rem;
  color: #1E1E1E;
  text-decoration: none;
  font-weight: 500;
}

.hero {
  padding: 2rem;
  background: #f8f8f8;
  text-align: center;
}

.cta-button {
  background: #F28C28;
  color: white;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  display: inline-block;
  margin-top: 1rem;
  border-radius: 5px;
}

.services-summary {
  padding: 2rem;
  background: #fff;
}

.services-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.service-card {
  padding: 1rem;
  border: 1px solid #eee;
  border-radius: 5px;
  background: #fff;
}

/* Responsive grid */
@media (min-width: 768px) {
  .services-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-card {
    flex: 1 1 45%;
  }
}

.site-footer {
  background: #1E1E1E;
  color: white;
  text-align: center;
  padding: 1rem 0;
  font-size: 0.9rem;
}

.site-logo {
  height: 120px;
  width: auto;
  display: block;
}



/* ======================
   Quote Form Styling
   ====================== */

.quote-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.quote-form label {
  font-weight: 600;
  color: #1E1E1E;
  margin-bottom: 0.3rem;
}

.site-footer {
  background: #1E1E1E;
  color: white;
  text-align: center;
  padding: 1.5rem 0;
  font-size: 0.9rem;
  margin-top: 2rem;
}

/* ========================
   Homepage Hero Section
   ======================== */

.home-hero {
  background: #1E1E1E;
  color: white;
  text-align: center;
  padding: 4rem 1rem 3rem;
}

.hero-logo {
  max-width: 500px;
  width: 100%;
  height: auto;
  margin: 0 auto 2rem;
  display: block;
  filter: drop-shadow(0 0 6px rgba(255,255,255,0.6));
}



.home-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #F28C28;
}

.home-hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 2rem;
  line-height: 1.5;
}

.cta-button {
  display: inline-block;
  background: #F28C28;
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 5px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background: #e07b20;
}



.quote-form input,
.quote-form select,
.quote-form textarea {
  padding: 0.75rem 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
  width: 100%;
  box-sizing: border-box;
}

.quote-form textarea {
  resize: vertical;
  min-height: 120px;
}

.quote-form button {
  align-self: flex-start;
  padding: 0.75rem 1.5rem;
  background-color: #F28C28;
  color: white;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  t
