body {
  font-family: Arial, sans-serif;
  margin: 0;
  background: #f3fff3;
  color: #222;
  scroll-behavior: smooth;
}

header {
  background: #006400;
  color: #fff;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo-text {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-direction: column;
}

.logo {
  width: 500px;
  height: auto;
}

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

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

.hero {
  text-align: center;
  padding: 60px 20px;
  background: #e6ffe6;
}

.hero h2 {
  color: #006400;
}

.btn {
  background: #006400;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  display: inline-block;
  margin-top: 20px;
  border-radius: 4px;
}

section {
  padding: 40px 20px;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.service-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.card {
  width: 220px;
  background: #fff;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 100, 0, 0.1);
}

.card img {
  width: 100%;
  border-radius: 5px;
  margin-bottom: 10px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 400px;
  margin: auto;
}

form input,
form textarea {
  padding: 10px;
  border: 1px solid #aaa;
  border-radius: 4px;
}

form button {
  background: #006400;
  color: white;
  padding: 10px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

blockquote {
  background: #fff;
  border-left: 4px solid #006400;
  padding: 15px;
  margin: 15px auto;
  max-width: 600px;
  font-style: italic;
}

iframe {
  width: 100%;
  height: 300px;
  border: none;
  margin-top: 20px;
}

footer {
  background: #006400;
  color: #fff;
  text-align: center;
  padding: 20px;
}

footer a {
  color: #b2f2bb;
  text-decoration: none;
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  color: white;
  font-size: 28px;
  padding: 15px;
  border-radius: 50%;
  text-align: center;
  text-decoration: none;
  z-index: 1000;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}
