/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Montserrat', Arial, sans-serif;
  background: #f8fafc;
  color: #222;
  line-height: 1.6;
}
header {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
}
.logo {
  font-weight: 700;
  font-size: 1.7rem;
  color: #2b7a78;
  letter-spacing: 1px;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}
.nav-links a {
  text-decoration: none;
  color: #222;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: #2b7a78;
}
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}
.menu-toggle span {
  width: 25px;
  height: 3px;
  background: #2b7a78;
  border-radius: 2px;
}
.hero {
  background: linear-gradient(120deg, #2b7a78 0%, #3aafa9 100%);
  color: #fff;
  padding: 5rem 2rem 4rem 2rem;
  text-align: center;
}
.hero-content h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}
.hero-content p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
}
.cta-btn {
  background: #fff;
  color: #2b7a78;
  padding: 0.8rem 2rem;
  border-radius: 30px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  border: none;
  cursor: pointer;
}
.cta-btn:hover {
  background: #2b7a78;
  color: #fff;
}
.services {
  padding: 4rem 2rem;
  background: #f8fafc;
  text-align: center;
}
.services h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #2b7a78;
}
.service-cards {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}
.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(43,122,120,0.08);
  padding: 2rem 1.5rem;
  max-width: 300px;
  flex: 1 1 250px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 32px rgba(43,122,120,0.15);
}
.card img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 1rem;
  height: 180px;
  object-fit: cover;
}
.card h3 {
  color: #3aafa9;
  margin-bottom: 0.5rem;
}
.about {
  padding: 4rem 2rem;
  background: #fff;
}
.about h2 {
  color: #2b7a78;
  margin-bottom: 2rem;
  text-align: center;
}
.about-content {
  display: flex;
  align-items: center;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}
.about-content img {
  width: 220px;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(43,122,120,0.08);
}
.about-content div {
  flex: 1 1 300px;
}
.testimonials {
  background: #f8fafc;
  padding: 4rem 2rem;
  text-align: center;
}
.testimonials h2 {
  color: #2b7a78;
  margin-bottom: 2rem;
}
.testimonial-cards {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}
.testimonial {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(43,122,120,0.08);
  padding: 1.5rem 1.2rem;
  max-width: 320px;
  flex: 1 1 220px;
  font-style: italic;
}
.testimonial span {
  display: block;
  margin-top: 1rem;
  color: #3aafa9;
  font-style: normal;
  font-weight: 700;
}
.contact {
  padding: 4rem 2rem;
  background: #fff;
  text-align: center;
}
.contact h2 {
  color: #2b7a78;
  margin-bottom: 2rem;
}
#contact-form {
  max-width: 400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
#contact-form input,
#contact-form textarea {
  padding: 0.8rem;
  border-radius: 8px;
  border: 1px solid #cce3e8;
  font-size: 1rem;
  font-family: inherit;
  resize: none;
}
#contact-form button {
  background: #2b7a78;
  color: #fff;
  border: none;
  padding: 0.8rem;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}
#contact-form button:hover {
  background: #3aafa9;
}
#form-message {
  margin-top: 1rem;
  color: #2b7a78;
  font-weight: 600;
}
footer {
  background: #222;
  color: #fff;
  padding: 1.5rem 2rem;
  text-align: center;
}
.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
}
.footer-content a {
  color: #3aafa9;
  text-decoration: none;
  margin: 0 0.3rem;
  transition: color 0.2s;
}
.footer-content a:hover {
  color: #fff;
}
@media (max-width: 900px) {
  .service-cards, .testimonial-cards, .about-content {
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 700px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
  }
  .nav-links {
    flex-direction: column;
    width: 100%;
    display: none;
    gap: 1rem;
    background: #fff;
    position: absolute;
    top: 60px;
    left: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    padding: 1rem 0;
  }
  .nav-links.active {
    display: flex;
  }
  .menu-toggle {
    display: flex;
  }
} 