
body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  background: #e6f2f1;
  color: #2d3e50;
}

header {
  background: #007b5e;
  color: white;
  padding: 1rem;
  text-align: center;
}

.logo {
  font-size: 1.8rem;
  font-weight: bold;
}

nav {
  margin-top: 10px;
}

nav button {
  background: white;
  color: #007b5e;
  border: 1px solid #007b5e;
  padding: 10px 15px;
  margin: 5px;
  cursor: pointer;
  border-radius: 5px;
}

nav button:hover {
  background: #004d3a;
  color: white;
}

.hero {
  position: relative;
  width: 100%;
  max-height: 400px;
  overflow: hidden;
}

.hero img {
  width: 100%;
  object-fit: cover;
  height: 400px;
}

.hero-text {
  position: absolute;
  bottom: 20px;
  left: 30px;
  background: rgba(0, 123, 94, 0.7);
  padding: 20px;
  color: white;
  border-radius: 10px;
}

main {
  padding: 1rem;
}

.tab.hidden {
  display: none;
}

.product-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.product-gallery img {
  width: 300px;
  height: auto;
  border-radius: 10px;
  box-shadow: 2px 2px 8px #888;
}

form input, form textarea {
  display: block;
  width: 100%;
  margin-bottom: 10px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

form button {
  padding: 10px 20px;
  background: #007b5e;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.whatsapp {
  display: inline-block;
  margin-top: 10px;
  color: white;
  background: #25d366;
  padding: 10px;
  text-decoration: none;
  border-radius: 5px;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.logo-wrapper img {
  height: 60px;
  cursor: pointer;
}
