/* GENERAL */
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background-color: #e6f4e6;
  color: #333;
  line-height: 1.6;
}

h1, h2 {
  color: #2e7d32;
  text-align: center;
}

a {
  text-decoration: none;
  color: #2e7d32;
}

a:hover {
  color: #1b5e20;
}

/* HEADER & NAV */
header {
  background-color: #a5d6a7;
  padding: 20px 0;
  text-align: center;
  border-bottom: 2px solid #81c784;
}

nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 10px;
}

nav ul li {
  display: inline;
  font-weight: bold;
}

/* MAIN SECTIONS */
main {
  padding: 30px 15px;
  max-width: 1000px;
  margin: auto;
}

section {
  margin-bottom: 50px;
}

/* SERVICES LIST */
ul li {
  margin-bottom: 10px;
}

/* GALLERY */
.gallery {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.gallery img {
  width: 300px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.05);
}

/* CONTACT FORM */
form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 500px;
  margin: auto;
}

input, textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
}

button {
  padding: 10px;
  background-color: #4caf50;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
}

button:hover {
  background-color: #388e3c;
}

/* FOOTER */
footer {
  background-color: #c8e6c9;
  text-align: center;
  padding: 10px;
  font-size: 14px;
  color: #555;
  margin-top: 40px;
}
.gallery {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 20px;
}

.gallery img {
  width: 200px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
