.page-header {
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
  color: white;
  padding: 4rem 0 3rem;
  text-align: center;
}

.page-header h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.intro-section {
  padding: 4rem 0;
  background: white;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.intro-content h2 {
  color: #2c3e50;
  margin-bottom: 1rem;
}

.intro-content p {
  color: #666;
  margin-bottom: 1rem;
  line-height: 1.8;
}

.trust-badges {
  display: flex;
  gap: 1rem;
  margin: 1.5rem 0;
  flex-wrap: wrap;
}

.badge {
  background: #fdeaea;
  color: #c0392b;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
}

.cta-group {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.cta-button {
  background: #e74c3c;
  color: white;
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: all 0.3s;
}

.cta-button:hover {
  background: #c0392b;
  transform: translateY(-2px);
}

.cta-button-secondary {
  background: transparent;
  color: #2c3e50;
  padding: 1rem 2rem;
  text-decoration: none;
  border: 2px solid #2c3e50;
  border-radius: 5px;
  font-weight: bold;
  transition: all 0.3s;
}

.cta-button-secondary:hover {
  background: #2c3e50;
  color: white;
}

.intro-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.climate-section {
  padding: 4rem 0;
  background: #2c3e50;
  color: white;
}

.climate-section h2 {
  text-align: center;
  margin-bottom: 0.5rem;
}

.section-intro {
  text-align: center;
  opacity: 0.9;
  margin-bottom: 2rem;
}

.climate-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.climate-card {
  text-align: center;
  padding: 2rem;
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
}

.climate-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 1rem;
}

.climate-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.climate-card p {
  font-size: 0.9rem;
  opacity: 0.9;
  line-height: 1.5;
}

.services-section {
  padding: 4rem 0;
  background: #f8f9fa;
}

.services-section h2 {
  text-align: center;
  color: #2c3e50;
  margin-bottom: 2rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.service-card h3 {
  color: #2c3e50;
  margin-bottom: 0.75rem;
}

.service-card p {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.price-range {
  display: inline-block;
  background: #27ae60;
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.85rem;
  font-weight: 500;
}

.neighborhoods-section {
  padding: 4rem 0;
  background: white;
}

.neighborhoods-section h2 {
  text-align: center;
  color: #2c3e50;
  margin-bottom: 0.5rem;
}

.neighborhoods-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.neighborhood-card {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 10px;
  border-left: 4px solid #e74c3c;
}

.neighborhood-card h3 {
  color: #2c3e50;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.neighborhood-card p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.5;
}

.service-area-note {
  text-align: center;
  margin-top: 2rem;
  color: #666;
  font-style: italic;
}

.process-section {
  padding: 4rem 0;
  background: #f8f9fa;
}

.process-section h2 {
  text-align: center;
  color: #2c3e50;
  margin-bottom: 3rem;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}

.step {
  text-align: center;
  padding: 1.5rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.step-number {
  width: 50px;
  height: 50px;
  background: #e74c3c;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 1rem;
}

.step h3 {
  color: #2c3e50;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.step p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.5;
}

.faq-section {
  padding: 4rem 0;
  background: white;
}

.faq-section h2 {
  text-align: center;
  color: #2c3e50;
  margin-bottom: 2rem;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: #f8f9fa;
  padding: 1.5rem 2rem;
  margin-bottom: 1rem;
  border-radius: 10px;
}

.faq-item h3 {
  color: #2c3e50;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.faq-item p {
  color: #666;
  line-height: 1.7;
}

.more-faqs {
  text-align: center;
  margin-top: 2rem;
  color: #666;
}

.more-faqs a {
  color: #e74c3c;
}

.products-section {
  padding: 4rem 0;
  background: #f8f9fa;
}

.products-section h2 {
  text-align: center;
  color: #2c3e50;
  margin-bottom: 0.5rem;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.product-card {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.product-card h3 {
  color: #2c3e50;
  margin-bottom: 0.75rem;
}

.product-card p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
}

.cta-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
  color: white;
  text-align: center;
}

.cta-section h2 {
  margin-bottom: 1rem;
}

.cta-section > .container > p {
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.cta-section .cta-button {
  background: white;
  color: #e74c3c;
}

.cta-section .cta-button-secondary {
  border-color: white;
  color: white;
}

.cta-section .cta-button-secondary:hover {
  background: white;
  color: #e74c3c;
}

.response-time {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  opacity: 0.8;
}

.related-services {
  padding: 4rem 0;
  background: white;
}

.related-services h2 {
  text-align: center;
  color: #2c3e50;
  margin-bottom: 2rem;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.related-card {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 10px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s, box-shadow 0.3s;
}

.related-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.related-card h3 {
  color: #e74c3c;
  margin-bottom: 0.5rem;
}

.related-card p {
  color: #666;
  font-size: 0.95rem;
}

@media (max-width: 1024px) {
  .climate-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .neighborhoods-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-steps {
    grid-template-columns: repeat(3, 1fr);
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .page-header h1 {
    font-size: 2rem;
  }

  .intro-grid {
    grid-template-columns: 1fr;
  }

  .intro-image {
    order: -1;
  }

  .cta-group {
    flex-direction: column;
  }

  .climate-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .neighborhoods-grid {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .related-grid {
    grid-template-columns: 1fr;
  }
}
