/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background: #f4f6f8;
  color: #333;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #0a3d62;
  padding: 1rem 2rem;
}

.logo {
  color: #fff;
  font-size: 1.4rem;
}
.logo span {
  color: #1e90ff;
}

.nav-links {
  list-style: none;
  display: flex;
}
.nav-links li {
  margin-left: 20px;
}
.nav-links a {
  text-decoration: none;
  color: #fff;
  transition: color 0.3s;
}
.nav-links a:hover, .active {
  color: #1e90ff;
}

/* Hero Section */
.hero {
  background: linear-gradient(to right, #1e90ff, #0a3d62);
  color: #fff;
  text-align: center;
  padding: 100px 20px;
}
.hero h2 {
  font-size: 2.5rem;
}
.hero p {
  margin: 15px 0;
}
.btn {
  background: #1e90ff;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.3s;
}
.btn:hover {
  background: #145a8d;
}

/* Features / Products / Services */
.features, .product-grid, .service-list, .contact-form {
  max-width: 1000px;
  margin: 40px auto;
  text-align: center;
}

.feature {
  margin-bottom: 20px;
}
.product-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.product-card {
  background: #fff;
  border-radius: 8px;
  padding: 15px;
  width: 280px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.product-card img {
  width: 100%;
  border-radius: 8px;
}
.price {
  display: block;
  margin-top: 10px;
  color: #1e90ff;
  font-weight: bold;
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  width: 80%;
  max-width: 500px;
}
.contact-form input, .contact-form textarea {
  margin-bottom: 15px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

/* Footer */
footer {
  background: #0a3d62;
  color: #fff;
  text-align: center;
  padding: 15px 0;
  margin-top: 40px;
}
