
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #fff;
  color: #333;
}

.navbar {
  background: #111;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1em 2em;
  position: relative;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 1em;
  padding: 0;
  margin: 0;
}

.navbar li a {
  background-color: #2a2a2a;
  padding: 0.5em 1em;
  border-radius: 25px;
  transition: background 0.3s, transform 0.3s;
  color: white;
  text-decoration: none;
}

.navbar li a:hover {
  background-color: #00cc66;
  transform: scale(1.05);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.menu-toggle div {
  width: 25px;
  height: 3px;
  background: white;
  border-radius: 2px;
}
@media (max-width: 880px) {
  .dropdown-menu {
    display: none;
    flex-direction: column;
    background: #111;
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    padding: 1em 0;
  }

  .dropdown-menu.show {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }

  .cta {
    display: none;
  }
}

.logo-red {
  color: #00cc66;
  font-weight: bold;
}
.logo-blue {
  color: white;
  font-weight: bold;
}
.arrow-up {
  font-weight: bold;
  margin-left: 2px;
}

.hero {
  text-align: center;
  padding: 4em 2em;
  background: linear-gradient(to right, #004d26, #1a8f5c);
  color: white;
}

.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 2em;
}

.card {
  background: white;
  border-radius: 10px;
  margin: 1em;
  padding: 1.5em;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
  flex: 1 1 300px;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: scale(1.05);
  border: 1px solid #00cc66;
}

footer {
  text-align: center;
  padding: 2em;
  background: #111;
  color: white;
}

.content {
  padding: 2em;
  max-width: 800px;
  margin: auto;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1em;
}

input, textarea, button {
  padding: 1em;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.button, .cta, button {
  background: #00cc66;
  color: white;
  padding: 1em 2em;
  border-radius: 5px;
  text-decoration: none;
  margin-top: 1em;
  display: inline-block;
  transition: background 0.3s;
  border: none;
}

.button:hover, .cta:hover, button:hover {
  background: #008f4f;
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  margin-left: auto;
}

.menu-toggle div {
  width: 25px;
  height: 3px;
  background: white;
  border-radius: 3px;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  right: 2em;
  background-color: #111;
  border-radius: 10px;
  padding: 1em;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transform: translateY(-10px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  width: 220px;
  flex-direction: column;
  display: flex;
}

.dropdown-menu.show {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.dropdown-menu li {
  margin: 0.5em 0;
}

.dropdown-menu li a {
  background: #2a2a2a;
  color: white;
  padding: 0.7em 1em;
  border-radius: 25px;
  text-align: center;
  text-decoration: none;
  transition: background 0.3s;
}

.dropdown-menu li a:hover {
  background: #00cc66;
}
.card img {
  width: 100%;
  height: auto;
  max-height: 250px;
  object-fit: contain;
  border-radius: 8px;
  margin-bottom: 1em;
}
.image-gallery {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 2em;
}

.image-gallery img {
  width: 250px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

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