body {
  font-family: "Roboto", sans-serif;
  color: #333;
  margin: 0;
  padding: 0;
  background-color: #fff;
}

#hero img {
  height: 500px;
  object-fit: cover;
}

.feature-item {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

footer a {
  text-decoration: none;
}

.nav-link:hover,
footer a:hover {
  text-decoration: underline;
}

body {
  font-family: "Roboto", sans-serif;
  scroll-behavior: smooth;
}

.feature-item h4 {
  margin-bottom: 1rem;
}

.carousel-inner img {
  max-height: 600px;
  object-fit: cover;
}

#screenshots img {
  transition: transform 0.3s;
}
#screenshots img:hover {
  transform: scale(1.05);
}
