
:root {
  --blue: #004080;
  --green: #1b8a5a;
  --lightgreen: #8fd694;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #fff;
  color: #333;
}

.topbar {
  background: var(--blue);
  color: white;
  text-align: center;
  padding: 5px 0;
  font-size: 14px;
}

.navbar {
  display: flex;
  justify-content: space-between;
  padding: 10px 20px;
  background: var(--green);
}

.navbar a {
  color: white;
  text-decoration: none;
  margin: 0 10px;
  font-weight: bold;
}

.logo {
  font-weight: bold;
  font-size: 1.5rem;
  color: white;
}

.hero {
  background: linear-gradient(var(--blue), var(--green));
  color: white;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 10px;
}

.hero-text h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.btn {
  background: var(--lightgreen);
  padding: 10px 20px;
  color: #000;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  display: inline-block;
  margin-top: 10px;
}

section {
  padding: 50px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.service {
  margin-bottom: 40px;
}

footer {
  background-color: var(--blue);
  color: white;
  text-align: center;
  padding: 20px 0;
  margin-top: 40px;
  font-size: 0.9rem;
}

.map {
  margin: 20px 0;
}

.socials a {
  color: var(--green);
  text-decoration: none;
  margin-right: 10px;
}

form input, form textarea {
  width: 100%;
  padding: 10px;
  margin: 6px 0 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
  box-sizing: border-box;
}

form button {
  background-color: var(--green);
  color: white;
  padding: 10px 15px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
}

form button:hover {
  background-color: #145c35;
}
@media (max-width: 600px) {
  .navbar {
    flex-direction: column;
    align-items: center;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .btn {
    margin-top: 20px;
  }
}
