* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}

body {
  line-height: 1.6;
  color: #333;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
}

header {
  background: #fff;
  border-bottom: 4px solid #1f8f4d;
}

.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header img {
  max-height: 60px;
}

nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #1f8f4d;
  font-weight: bold;
}

.hero {
  background: #1f8f4d;
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}

h2 {
  margin-bottom: 20px;
  color: #1f8f4d;
	border-left: 5px solid #1f8f4d;
	padding-left: 10px;
}

.specialist-list li {
  margin: 5px 0px 10px 10px;
}

.light-bg {
  background: #f7f9fb;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.product-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  text-align: center;
  padding: 20px;
}

.product-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 6px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

form input, form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 12px;
}

form button {
  background: #1f8f4d;
  color: #fff;
  border: none;
  padding: 12px;
  cursor: pointer;
}

footer {
  background: #1f8f4d;
  color: #fff;
  text-align: center;
  padding: 15px;
}

.whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: #fff;
  font-size: 30px;
  padding: 12px 15px;
  border-radius: 50%;
  text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
  .header-flex {
    flex-direction: column;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}
