
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  color: #1a1a1a;
  background-color: #f8fdf8;
}

a {
  color: inherit;
  text-decoration: none;
}

.hero {
  background: linear-gradient(135deg, #064e3b, #10b981);
  color: white;
  padding: 2em 0;
  text-align: center;
}

.logo {
  font-size: 2.5em;
  margin: 0;
}

.slogan {
  font-size: 1.3em;
  margin-top: 0.5em;
}

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

nav a {
  color: white;
  font-weight: bold;
  transition: opacity 0.3s ease;
}

nav a:hover {
  opacity: 0.7;
}

.section {
  padding: 4em 2em;
}

.gradient-section {
  background: linear-gradient(to bottom, #f0fdf4, #dcfce7);
}

.container {
  max-width: 960px;
  margin: 0 auto;
}

.section-image {
  width: 100%;
  max-width: 600px;
  margin-top: 2em;
  display: block;
}

.contact-form {
  margin-top: 1.5em;
  display: flex;
  flex-direction: column;
  gap: 1em;
  max-width: 500px;
}

.contact-form input,
.contact-form textarea {
  padding: 0.75em;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.contact-form button {
  padding: 0.75em;
  border: none;
  background: #10b981;
  color: white;
  font-size: 1em;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background: #064e3b;
}

.social-icons {
  display: flex;
  gap: 16px;
  margin-top: 2em;
}

.social-icons a {
  display: inline-block;
  transition: transform 0.3s ease, fill 0.3s ease;
}

.social-icons svg {
  width: 28px;
  height: 28px;
  fill: white;
  transition: transform 0.3s ease, fill 0.3s ease;
}

.social-icons a:hover svg {
  fill: #064e3b;
  transform: scale(1.2);
}

@media (max-width: 600px) {
  nav ul {
    flex-direction: column;
    gap: 10px;
  }
}
