body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  background: #f9f9f9;
  color: #222;
}

/* Navbar */
/* header {
  background: #0077b6;
  color: white;
  padding: 15px 0;
}
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  margin: auto;
}
nav ul {
  display: flex;
  gap: 20px;
  list-style: none;
}
nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}
nav ul li a:hover, nav ul li a.active {
  text-decoration: underline;
}
.signup-btn {
  background: white;
  color: #0077b6;
  padding: 5px 12px;
  border-radius: 5px;
} */

/* About Page */
/* .about-company, .awards, .technology {
  text-align: center;
  margin: 40px auto;
  width: 80%;
}
.about-company img, .awards img {
  width: 100%;
  border-radius: 10px;
}
h1, h2 {
  color: #0077b6;
} */

/* Contact Page */
.contact {
  width: 80%;
  margin: 40px auto;
  text-align: center;
}
form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 60%;
  margin: 20px auto;
}
form input, form textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}
button {
  background: #0077b6;
  color: white;
  border: none;
  padding: 10px;
  border-radius: 5px;
  cursor: pointer;
}
button:hover {
  background: #005f8e;
}

/* Products */
/* .products {
  width: 85%;
  margin: 40px auto;
  text-align: center;
}
.product-list {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}
.product-card {
  background: white;
  padding: 15px;
  border-radius: 10px;
  width: 280px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.product-card img {
  width: 100%;
  border-radius: 10px;
} */

/* Footer */
footer {
  text-align: center;
  background: #0077b6;
  color: white;
  padding: 15px 0;
  margin-top: 40px;
}
