* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, sans-serif; 
}

header {
  background-color: #333;
  color: white;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
}

header h1 {
  margin: 0;
}

nav a {
  color: white;
  margin-left: 20px;
  text-decoration: none;
  font-weight: bold;
}

nav a:hover {
  text-decoration: underline;
}

.hero {
  background: url('../images/banner.png') center/cover no-repeat;
  color: white;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 2em;
  text-shadow: 2px 2px 5px rgba(0,0,0,0.7);
}

section {
  padding: 40px 20px;
  max-width: 1000px;
  margin: auto;
}

.section-title {
  text-align: center;
  margin-bottom: 30px;
}

.products, .gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.card {
  border: 1px solid #ccc;
  border-radius: 8px;
  width: 220px;
  padding: 10px;
  text-align: center;
}

.card img {
  width: 100%;
  border-radius: 5px;
}

.gallery img {
  width: 200px;
  height: auto;
  border-radius: 5px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  max-width: 500px;
  margin: auto;
}

.contact-form input, .contact-form textarea {
  margin-bottom: 15px;
  padding: 10px;
  font-size: 1em;
}

footer {
  background-color: #333;
  color: white;
  text-align: center;
  padding: 20px;
}

@media (max-width: 600px) {
  .products, .gallery {
    flex-direction: column;
    align-items: center;
  }
}
