body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #f9f9f9;
  color: #333;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  padding: 2rem 0;
}

.hero {
  background: #fff;
  color: #e42313;
  text-align: center;
  padding: 3rem 2rem 2rem;
  border-bottom: 4px solid #e42313;
}

.logo {
  max-width: 300px;
  height: auto;
  margin-bottom: 1rem;
}

.tagline {
  font-size: 1.8rem;
  font-weight: bold;
}

.location {
  font-size: 1.1rem;
  font-style: italic;
  color: #555;
}

.btn {
  background: #e42313;
  color: white;
  padding: 0.75rem 1.5rem;
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
  margin-top: 1rem;
  display: inline-block;
  transition: background 0.2s ease-in-out;
}

.btn:hover {
  background: #b31a10;
}

.about {
  background: #fefefe;
  padding: 3rem 0;
}

.text-left {
  text-align: left;
}

.products {
  background: #f0f0f0;
  padding: 3rem 0;
}

.products h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.product-card {
  background: white;
  border-radius: 10px;
  padding: 1rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.product-card img {
  width: 100%;
  max-height: 200px;
  object-fit: cover;
  border-radius: 10px;
}

footer {
  background: #222;
  color: #ccc;
  text-align: center;
  padding: 1.5rem 0;
}
