* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background-color: #ffffff;
  color: #1e3932;
  line-height: 1.6;
}

header {
  background: url('../images/headed.png') no-repeat center center/cover;
  color: white;
  text-align: center;
  padding: 2rem 2rem;
}
  
header h1 {
  font-size: 3rem;
  font-weight: bold;
}

header p {
  font-size: 1.2rem;
  margin-top: 1rem;
}

nav {
  background: #20B286;
  display: flex;
  justify-content: center;
  padding: 1rem;
  gap: 1.5rem;
}

nav a {
  color: white;
  text-decoration: none;
  font-size: 1rem;
  font-weight: bold;
  transition: color 0.3s;
}

nav a:hover {
  color: #a8e6cf;
}

.container {
  max-width: 1200px;
  text-align: center;
  margin: 2rem auto;
  padding: 0 1rem;
}

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

.service-card {
  background: #f0f0f0;
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
  transition: transform 0.3s;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card h3 {
  color: #026937;
  margin-bottom: 1rem;
}

footer {
  background-color: #20B286;
  color: white;
  text-align: center;
  padding: 2rem;
  font-size: 1rem;
  margin-top: 4rem;
}
  