html, body, h1, h2, p, ul, li, nav, section, header, footer {
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #f4f8f2;
  color: #222;
}

/* HEADER */
header {
  background-color: #2e7d32;
  color: white;
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 140px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}

.logo {
  width: 65px;
  height: auto;
  margin-bottom: 8px;
  transition: all 0.3s ease;
}

header h1 {
  font-size: 1.8rem;
  margin: 0;
  transition: all 0.3s ease;
}

header.compact {
  height: 85px;
}

header.compact .logo {
  width: 40px;
  margin-bottom: 2px;
}

header.compact h1 {
  font-size: 1.2rem;
}
/* NAV */
nav {
  background-color: #1b5e20;
  text-align: center;
  padding: 15px;
}

nav a {
  color: white;
  text-decoration: none;
  margin: 0 15px;
  font-weight: bold;
}

nav a:hover {
  text-decoration: underline;
}
/* MAIN SECTIONS */
section {
  max-width: 900px;
  margin: auto;
  padding: 50px 20px;
}

h2 {
  color: #2e7d32;
  margin-bottom: 15px;
}

.services ul,
.why ul {
  margin-left: 25px;
  margin-top: 10px;
}

/* CONTACT BOX */
.contact {
  background-color: #e8f5e9;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 40px;
}

.contact a {
  color: #1b5e20;
  text-decoration: none;
}

.contact a:hover {
  text-decoration: underline;
}

/* FOOTER */
footer {
  text-align: center;
  background-color: #1b5e20;
  color: white;
  padding: 20px;
  margin-top: 30px;
}