@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@400;600;700&display=swap');

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

html { scroll-behavior: smooth; }

body { 
  font-family: 'Nunito Sans', sans-serif; 
  color: #000;
  line-height: 1.6;
  background: white;
}

h1, h2 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 40px;
  border-bottom: 1px solid #e0e0e0;
  background: white;
}

.logo {
  height: 80px;
  width: auto;
}

.logo svg {
  height: 100%;
  width: auto;
}

.phone-header {
  font-size: 20px;
  font-weight: 700;
  color: #0D7B71;
  text-decoration: none;
  font-family: 'Nunito Sans', sans-serif;
}

.phone-header:hover {
  color: #0a5c58;
}

.phone-header:focus {
  outline: 3px solid #0D7B71;
  outline-offset: 2px;
}

.hero {
  padding: 80px 40px;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}

.hero-title {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 24px;
  color: #000;
  line-height: 1.2;
  letter-spacing: -1px;
}

.hero-subtitle {
  font-size: 24px;
  color: #333;
  margin-bottom: 40px;
  font-weight: 400;
}

.cta-button {
  display: inline-block;
  background: #0D7B71;
  color: white;
  padding: 18px 48px;
  font-size: 18px;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.3s;
  font-family: 'Nunito Sans', sans-serif;
}

.cta-button:hover {
  background: #0a5c58;
}

.cta-button:active {
  transform: scale(0.98);
}

.cta-button:focus {
  outline: 3px solid #0D7B71;
  outline-offset: 2px;
}

.divider {
  height: 1px;
  background: #e0e0e0;
  margin: 80px 0;
}

.trust-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 60px;
  background: #f9f9f9;
  border-radius: 8px;
}

.trust-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 48px;
  color: #000;
  text-align: center;
  letter-spacing: -0.5px;
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}

.trust-item {
  padding: 24px 0;
}

.trust-item strong {
  color: #0D7B71;
  font-size: 24px;
  font-weight: 600;
  display: block;
  margin-bottom: 16px;
  font-family: 'Nunito Sans', sans-serif;
  line-height: 1.3;
}

.trust-item p {
  color: #333;
  font-size: 18px;
  line-height: 1.8;
}

.contact-section {
  max-width: 1000px;
  margin: 80px auto;
  padding: 80px 40px;
  text-align: center;
}

.contact-title {
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 32px;
  color: #000;
  letter-spacing: -0.5px;
}

.contact-phone {
  font-size: 40px;
  font-weight: 700;
  color: #0D7B71;
  text-decoration: none;
  margin-bottom: 24px;
  display: block;
  font-family: 'Nunito Sans', sans-serif;
  letter-spacing: -0.5px;
}

.contact-phone:hover {
  color: #0a5c58;
}

.contact-phone:focus {
  outline: 3px solid #0D7B71;
  outline-offset: 2px;
}

.contact-email {
  font-size: 18px;
  color: #000;
  margin-bottom: 40px;
}

.contact-email a {
  color: #0D7B71;
  text-decoration: none;
  font-weight: 600;
}

.contact-email a:hover {
  text-decoration: underline;
}

.contact-email a:focus {
  outline: 3px solid #0D7B71;
  outline-offset: 2px;
}

.contact-note {
  color: #666;
  font-size: 18px;
  margin-bottom: 12px;
}

.service-area {
  font-size: 16px;
  color: #333;
  margin-top: 40px;
  line-height: 1.8;
}

.service-area strong {
  color: #000;
  display: block;
  margin-bottom: 12px;
  font-size: 18px;
}

.footer {
  background: #f9f9f9;
  border-top: 1px solid #e0e0e0;
  padding: 48px 40px;
  text-align: center;
  font-size: 15px;
  color: #666;
}

.footer p {
  margin: 10px 0;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: #0D7B71;
  color: white;
  padding: 8px 16px;
  text-decoration: none;
  z-index: 100;
}

.skip-link:focus {
  top: 0;
}

@media (max-width: 768px) {
  .header {
    flex-direction: column;
    gap: 20px;
    padding: 20px;
  }
  
  .logo {
    height: 60px;
  }
  
  .phone-header {
    font-size: 18px;
  }
  
  .hero {
    padding: 60px 20px;
  }
  
  .hero-title {
    font-size: 36px;
  }
  
  .hero-subtitle {
    font-size: 20px;
  }
  
  .trust-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .trust-title {
    font-size: 28px;
  }
  
  .trust-item strong {
    font-size: 20px;
  }
  
  .trust-item p {
    font-size: 16px;
  }
  
  .contact-section {
    padding: 60px 20px;
  }
  
  .contact-title {
    font-size: 32px;
  }
  
  .contact-phone {
    font-size: 28px;
  }
  
  .contact-email {
    font-size: 16px;
  }
  
  .contact-note {
    font-size: 16px;
  }
  
  .service-area {
    font-size: 15px;
  }
}
