:root {
  --green: #3b8c6e;
  --green-light: #f0f7f4;
  --text: #2c3338;
  --text-light: #6e7c87;
}

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

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: var(--text);
  background: white;
}

nav {
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* max-width: 1100px; */
  border-bottom: 1px solid #dadada;
  margin: 0 auto;
}

.logo {
  font-weight: 600;
  color: var(--green);
  font-size: 22px;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.9rem;
}

.nav-links a:hover {
  color: var(--green);
}
main{
  padding: 2em;
}


section {
  padding: 1rem 0;
}

h1 {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--green);
}

p {
  color: var(--text-light);
  margin-bottom: 2rem;
  /* max-width: 600px; */
}

.btn {
  width: 15%;
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background: var(--green);
  color: white;
  text-decoration: none;
  border: none;
  border-radius: 30px;
  text-align: center;
  font-size: 0.9rem;
  cursor: pointer;
  transition: opacity 0.2s;
}

.btn:hover {
  opacity: 0.9;
}

.hero {
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.work-item {
  background: var(--green-light);
  padding: 2rem;
  border-radius: 4px;
  text-align: center;
  font-weight: 500;
}

.contact form {
  display: flex;
  gap: 1rem;
  max-width: 400px;
}

input {
  flex: 1;
  padding: 0.8rem;
  border: 1px solid #eee;
  border-radius: 4px;
  font-family: inherit;
}

input:focus {
  outline: none;
  border-color: var(--green);
}

footer {
  background-color: #000;
  color: #fff;
  text-align: center;
  padding: 1rem;
  text-align: center;
  color: var(--text-light);
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  .contact form {
    flex-direction: column;
  }

  .nav-links {
    display: none;
  }
}