/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: #ffffff;
  color: #1a1a1a;
  line-height: 1.6;
}
header {
  background: #004d40;
  color: white;
  padding: 40px 20px;
  text-align: center;
}
header h1 {
  margin: 0;
  font-size: 2.5rem;
}
header p {
  font-size: 1.2rem;
  margin-top: 10px;
}
nav {
  background: #e0f2f1;
  text-align: center;
  padding: 15px 0;
}
nav a {
  color: #004d40;
  margin: 0 15px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
}
nav a:hover {
  color: #00796b;
  text-decoration: underline;
}
main {
  padding: 40px 20px;
  max-width: 1100px;
  margin: auto;
}
h2, h3 {
  color: #004d40;
  margin-top: 0;
}
.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 40px;
  gap: 20px;
}
.hero img {
  max-width: 100%;
  width: 500px;
  border-radius: 8px;
  flex: 1 1 400px;
}
.hero-text {
  flex: 1 1 300px;
}
.services, .why-us, .about-header, .our-values, .team {
  margin-bottom: 40px;
}
.services ul,
.our-values ul {
  list-style-type: none;
  padding: 0;
}
.services li,
.our-values li {
  background: #f1f8e9;
  margin-bottom: 10px;
  padding: 12px 15px;
  border-left: 4px solid #66bb6a;
  border-radius: 4px;
}
.about-header img,
.why-us img,
.team img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  margin-top: 15px;
}
footer {
  background: #004d40;
  color: white;
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
}
/* Responsive tweaks */
@media (max-width: 768px) {
  header h1 {
    font-size: 2rem;
  }
  nav a {
    display: inline-block;
    margin: 10px 10px;
  }
  .hero {
    flex-direction: column;
  }
  main {
    padding: 20px;
  }
}
