body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: #111;
  background-color: #fff;
  line-height: 1.6;
}
.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  z-index: 1000;
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  max-width: 1200px;
  margin: auto;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #00c97e;
  font-weight: 700;
  text-decoration: none;
}
.logo img { height: 35px; }
.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}
.nav-links a {
  text-decoration: none;
  color: #111;
  font-weight: 500;
}
.contact-btn {
  background: #111;
  color: #fff !important;
  padding: 0.6rem 1.3rem;
  border-radius: 25px;
}
.hero {
  text-align: center;
  padding: 8rem 2rem 6rem;
  background: linear-gradient(to bottom, #fff, #eaf2fa);
}
.green-text { color: #017a41; }
.hero h2 {
  font-weight: 600;
  color: #333;
}
.hero p {
  max-width: 700px;
  margin: 1.5rem auto;
  color: #444;
}
.section {
  padding: 5rem 2rem;
  max-width: 1000px;
  margin: auto;
}
.section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 1rem;
}
.about-list li { margin-bottom: 0.8rem; }
.products-section {
  background: #1e32a1;
  color: #fff;
  padding: 5rem 2rem;
  border-radius: 60px 60px 0 0;
  text-align: center;
}
.product-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
}
.product-card {
  background: #f9fafc;
  color: #111;
  padding: 2rem;
  border-radius: 20px;
  width: 260px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.checklist {
  list-style: none;
  text-align: center;
  padding: 0;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.service-card {
  background: #f8f9fb;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}
.compliance-list { margin-left: 1rem; }
.footer {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 3rem 1rem;
}
.footer h2 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
}
.footer-info p {
  margin: 0.3rem 0;
}
.copyright {
  margin-top: 2rem;
  font-size: 0.9rem;
  opacity: 0.8;
}
