/* Services Section */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  background: #fefefe;
  color: #333;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: #004d40;
  color: white;
}
.navbar .logo {
  font-size: 1.5rem;
  font-weight: bold;
}
.navbar ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}
.navbar ul li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}
.navbar ul li a:hover,
.navbar ul li a.active {
  text-decoration: underline;
}

.services-section {
  padding: 3rem 1rem;
  text-align: center;
  background: #e8f5e9;
}
.services-section h1 {
  margin-bottom: 2rem;
  font-size: 2rem;
  color: #2e7d32;
}
.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  padding: 0 1rem;
}
.service-card {
  background: white;
  border-radius: 15px;
  padding: 2rem 1.5rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card img {
  width: 60px;
  margin-bottom: 1rem;
}
.service-card h3 {
  color: #388e3c;
  margin-bottom: 0.5rem;
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
/* Responsive */
@media (max-width: 768px) {
  .features {
    flex-direction: column;
  }
  .navbar ul {
    flex-direction: column;
    gap: 1rem;
  }
}