.logo {
  font-size: 22px;
  font-weight: 700;
}

.hero {
  display: flex;
  gap: 30px;
  align-items: center;
  margin-top: 20px;
}

.hero img {
  width: 400px;
  border-radius: 8px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.gallery img {
  width: 90%;
  border-radius: 6px;
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 2fr);
  gap: 20px;
  margin-top: 20px;
}

.card {
  background: white;
  padding: 12px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.card img {
  width: 100%;
  border-radius: 6px;
  margin-bottom: 10px;
}
.card h3 {
  margin: 8px 0;
  color: #0f172a;
}

.card .desc {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 10px;
}
.card p {
  font-size: 13px;
  margin: 3px 0;
}
.info-box {
  background: #f1f5f9;
  padding: 10px;
  border-radius: 8px;
  margin-bottom: 10px;
}
.info-box p {
  font-size: 13px;
  margin: 3px 0;
}


section h2 {
  color: green;
}

.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;

  background: white;
  min-width: 220px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  overflow: hidden;
  z-index: 1000;
}

.dropdown-content a {
  display: block;
  padding: 10px;
  color: black;
  text-decoration: none;
}

.dropdown-content a:hover {
  background: #e8f5e9;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.map-pin {
  width: 18px;
  height: 18px;
  background: #e74c3c;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  display: inline-block;
  margin: 0 15px;
  position: relative;
}

.map-pin span {
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50%;
  position: absolute;
  top: 5px;
  left: 5px;
}

.map-pin:hover {
  transform: rotate(-45deg) scale(1.2);
  transition: 0.3s;
}
