
body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f9f9f9;
    color: #333;
}

.navbar {
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.logo-wrapper {
    width: 100%;
    background: linear-gradient(135deg, #1f1a24, #2d2633);
    padding: 60px 0;
    text-align: center;
}

.logo-background img {
    width: 900px;
    height: auto;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 24px;
    margin: 0;
    padding: 16px 0;
}

nav a {
    text-decoration: none;
    color: #111;
    font-weight: 500;
}

.hero {
    text-align: center;
    padding: 60px 20px 40px;
}

.hero h1 {
  font-size: 2.5em;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.1em;
  margin: 5px 0;
}

.about-section, .contact-section {
  padding: 40px 20px;
  background-color: #fff;
  margin: 30px 0;
}

.about-section h2,
.contact-section h2,
.product-grid h2 {
  text-align: center;
  font-size: 2em;
  margin-bottom: 20px;
}

.about-section p, .contact-section p {
  max-width: 800px;
  margin: 0 auto 10px;
  text-align: center;
}

.product-grid {
  padding: 40px 20px;
  background-color: #f2f2f2;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.product {
  background-color: white;
  padding: 15px;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: transform 0.2s ease;
}

.product:hover {
  transform: translateY(-5px);
}

.product img {
  max-width: 100%;
  border-radius: 6px;
}

footer {
  text-align: center;
  padding: 20px;
  background-color: #eee;
  margin-top: 40px;
  font-size: 0.9em;
}
