body {
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  background: #fff;
  color: #1a0033;
}
header {
  background: #1a0033;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
}
.logo {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 1px;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}
.nav-links li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links li a:hover {
  color: #FFD700;
}
.cta-btn {
  background: #b8001c;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  margin-left: 1rem;
  box-shadow: 0 2px 8px rgba(26,0,51,0.08);
}
.cta-btn:hover, .cta-btn:focus {
  background: #FFD700;
  color: #1a0033;
}
.hero-section {
  background: linear-gradient(135deg, #1a0033 70%, #FFD700 100%);
  color: #fff;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}
.hero-content {
  max-width: 700px;
  margin: 0 auto;
}
.hero-content h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  font-weight: 700;
}
.hero-content p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
}
.hero-cta {
  font-size: 1.2rem;
  padding: 1rem 2.5rem;
}
.floating-cta {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #b8001c;
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 50px;
  box-shadow: 0 4px 16px rgba(26,0,51,0.15);
  z-index: 2000;
  font-weight: 700;
  font-size: 1.1rem;
  transition: background 0.2s;
}
.floating-cta a {
  color: #fff;
  text-decoration: none;
}
.floating-cta:hover {
  background: #FFD700;
  color: #1a0033;
}
main {
  padding: 3rem 1rem 2rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
}
.services-section {
  margin-bottom: 3rem;
}
.services-section h2 {
  color: #1a0033;
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  text-align: center;
}
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}
.service {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(26,0,51,0.05);
  padding: 2rem;
  flex: 1 1 350px;
  max-width: 500px;
  min-width: 300px;
}
.service h3 {
  color: #1a0033;
  margin-top: 0;
}
.sub-services {
  margin: 0.5rem 0 1rem 1.5rem;
  color: #1a0033;
}
.why-choose-us {
  background: #f8f6ff;
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 3rem;
}
.why-choose-us h2 {
  color: #1a0033;
  text-align: center;
}
.why-choose-us ul {
  list-style: disc inside;
  max-width: 900px;
  margin: 1.5rem auto 0 auto;
  color: #1a0033;
  font-size: 1.1rem;
}
.reviews-section {
  margin-bottom: 3rem;
}
.reviews-section h2 {
  color: #1a0033;
  text-align: center;
  margin-bottom: 1.5rem;
}
.review {
  background: #fff;
  border-left: 6px solid #FFD700;
  margin: 1rem auto;
  max-width: 700px;
  padding: 1.2rem 2rem;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(26,0,51,0.05);
  color: #1a0033;
}
.review span {
  display: block;
  margin-top: 0.5rem;
  color: #b8001c;
  font-weight: 700;
}
.contact-section {
  background: #f8f6ff;
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 3rem;
}
.contact-section h2 {
  color: #1a0033;
  text-align: center;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto 2rem auto;
}
.contact-form label {
  font-weight: 500;
  color: #1a0033;
}
.contact-form input,
.contact-form textarea {
  padding: 0.7rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  font-family: 'Montserrat', sans-serif;
}
.contact-form button {
  align-self: flex-start;
}
.contact-info {
  text-align: center;
  color: #1a0033;
}
.service-areas {
  margin-bottom: 3rem;
}
.service-areas h2 {
  color: #1a0033;
  text-align: center;
}
.zip-codes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 1rem 0 0 0;
}
.zip-codes li {
  background: #FFD700;
  color: #1a0033;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-weight: 700;
  font-size: 1rem;
}
.faq-section {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 3rem;
  box-shadow: 0 2px 8px rgba(26,0,51,0.05);
}
.faq-section h2 {
  color: #1a0033;
  text-align: center;
}
.faq {
  margin-bottom: 1.5rem;
}
.faq h3 {
  color: #b8001c;
  margin-bottom: 0.5rem;
}
footer {
  background: #1a0033;
  color: #fff;
  padding: 2rem 1rem;
}
.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
}
.footer-logo {
  font-size: 1.3rem;
  font-weight: 700;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-links a {
  color: #FFD700;
  text-decoration: none;
  font-weight: 500;
}
.footer-links a:hover {
  color: #fff;
}
.footer-contact {
  font-size: 1rem;
  color: #fff;
}
@media (max-width: 900px) {
  .service-list {
    flex-direction: column;
    align-items: center;
  }
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
@media (max-width: 600px) {
  .navbar {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }
  .hero-content h1 {
    font-size: 2rem;
  }
  .hero-content p {
    font-size: 1rem;
  }
  .service {
    padding: 1rem;
    min-width: unset;
  }
  main {
    padding: 1.5rem 0.5rem;
  }
  .floating-cta {
    padding: 0.7rem 1.2rem;
    font-size: 1rem;
    bottom: 15px;
    right: 15px;
  }
}
