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

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

body {
  font-family: Arial, sans-serif;
  background: linear-gradient(to bottom, #f8faf8, #eef5ee);
  color: #333;
}

/* HEADER */
.header {
  background-color: #3D7A40;
  color: white;
  text-align: center;
  padding: 20px;
}
.header h1 {
  font-size: 28px;
  font-weight: bold;
}
.header p {
  font-style: italic;
  font-size: 15px;
  margin-top: 4px;
}

/* NAV */
nav {
  background: white;
  display: flex;
  justify-content: space-evenly;
  align-items: center;

  padding: 18px 40px;
  box-shadow: 0 3px 12px rgba(0,0,0,.08);
}

nav a {
  text-decoration: none;
  color: #333;
  font-size: 15px;
  font-weight: bold;
}
nav a:hover { text-decoration: underline; }
nav a.active { color: #3D7A40; }

#logo {
  width: 70px;
}

/* FOOTER */
.footer { background-color: #3D7A40; color: white; text-align: center; padding: 14px; font-size: 13px; }
.footer a { color: white; text-decoration: none; }
.footer a:hover { text-decoration: underline; }

/* SERVICES STYLE */

.container {
  background: white;
  border: none;
  border-radius: 18px;
  padding: 30px;
  box-shadow: 0 6px 20px rgba(0,0,0,.08);
  transition: .3s;
  position: relative;
  overflow: hidden;
  animation: fadeUp 0.8s ease;
}

.container::before {
  content: "";
  position: absolute;

  top: 0;
  left: 0;

  width: 100%;
  height: 6px;

  background: #3D7A40;
}

.container p,
.container ul,
.container li {
  line-height: 1.8;
  color: #666;
  font-size: 16px;
  text-align: justify;
}

.container ul {
  padding-left: 20px;
  margin-top: 8px;
}

.container li {
  margin-bottom: 12px;
}

.container > h3 {
  color: #2C4A2E;
  font-size: 28px;
  padding-bottom: 12px;
}

.small-container {
  background: #f8faf8;
  border-radius: 12px;
  padding: 20px 24px;
  margin-top: 16px;
}

.small-container h3 {
  color: #2C4A2E;
  font-size: 20px;
  margin-bottom: 8px;
}

.service-container {
  max-width: 960px;
  margin: 30px auto 24px;
  padding: 24px;
}

.service-container h2 {
  font-size: 42px;
  color: #2C4A2E;
  padding-bottom: 8px;
  margin-bottom: 20px;
}

.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin: 20px 0 40px;
}
