
body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #f4f4f4;
  color: #333;
}
.hero {
  background: #003366;
  color: white;
  text-align: center;
  padding: 2rem 1rem;
}
.logo {
  height: 130px;
}
.intro, .about, .screenshots, .qr-codes, .contact {
  padding: 2rem 1rem;
  text-align: center;
}

.intro p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.6;
}
.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}
.feature {
  background: white;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  width: 240px;
}
.screenshots {
  background-color: #fff;
}
.gallery {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  justify-content: center; /* Center the images horizontally */
  scroll-snap-type: x mandatory;
}

.gallery img {
  height: 300px;
  border-radius: 8px;
  flex: 0 0 auto;
  scroll-snap-align: start;
}

.gallery img:hover {
  transform: scale(1.03);
}
.codes {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.codes img {
  height: 150px;
}
form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 400px;
  margin: 1rem auto;
}
input, textarea {
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}
button {
  padding: 0.8rem;
  background: #003366;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
footer {
  text-align: center;
  padding: 1rem;
  background: #222;
  color: white;
.social-icons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.social-icons img {
  height: 30px;
  width: 30px;
  transition: transform 0.3s ease;
  filter: grayscale(100%);
}

.social-icons img:hover {
  transform: scale(1.1);
  filter: none;
}
.qr-codes{
    display: none;
}