* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background: #fff;
  color: #333;
}

header {
  background: #4CAF50;
  color: white;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav a {
  margin-left: 15px;
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.hero {
  position: relative;
  height: 400px;
  overflow: hidden;
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-text {
  position: absolute;
  bottom: 30px;
  left: 50px;
  color: white;
  background: rgba(0, 0, 0, 0.5);
  padding: 20px;
}

.about, .products, .gallery, .contact {
  padding: 2rem;
  max-width: 1100px;
  margin: auto;
}

.product-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.product {
  flex: 1 1 300px;
  background: #f4f4f4;
  padding: 1rem;
  border-radius: 10px;
}

.product img {
  width: 100%;
  border-radius: 8px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.gallery-grid img {
  width: 100%;
  border-radius: 8px;
}

form {
  display: flex;
  flex-direction: column;
  max-width: 500px;
  margin-top: 1rem;
}

form input, form textarea {
  margin-bottom: 1rem;
  padding: 10px;
  border: 1px solid #ccc;
}

form button {
  background: #4CAF50;
  color: white;
  padding: 10px;
  border: none;
  cursor: pointer;
}

footer {
  text-align: center;
  background: #333;
  color: white;
  padding: 1rem;
  margin-top: 2rem;
}
.staff {
  padding: 2rem;
  max-width: 1100px;
  margin: auto;
}

.staff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.staff-member {
  text-align: center;
  background: #f9f9f9;
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.staff-member img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
}
.hero {
  position: relative;
  height: 400px;
  overflow: hidden;
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-text {
  position: absolute;
  bottom: 30px;
  left: 50px;
  color: white;
  background: rgba(0, 0, 0, 0.5);
  padding: 20px;
  max-width: 500px;
}

.commercial {
  padding: 2rem;
  max-width: 1100px;
  margin: auto;
  background: #f7fdf7;
  border-top: 3px solid #4CAF50;
}

.commercial h2 {
  color: #4CAF50;
  margin-bottom: 1rem;
}

.commercial p {
  margin-bottom: 1rem;
}

.commercial ul {
  list-style-type: disc;
  margin: 1rem 0 1rem 2rem;
}

.commercial blockquote {
  background: #e8f5e9;
  border-left: 5px solid #4CAF50;
  padding: 1rem 1.5rem;
  margin-top: 2rem;
  font-style: italic;
}

.contact-details {
  background: #f0f0f0;
  padding: 1.5rem 2rem;
  margin-top: 2rem;
  border-top: 2px solid #4CAF50;
}

.contact-details h3 {
  margin-bottom: 1rem;
  color: #4CAF50;
}

.contact-details p {
  margin: 5px 0;
}

