* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: #f7f3f0;
  color: #3e2f1c;
  line-height: 1.6;
}

.nav-logo img {
  height: 56px;
  width: auto;
  display: block;
  margin-left: auto;
}

.navbar {
  background: rgba(255,255,255,0.93); /* White with slight transparency */
  padding: 0 32px;
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 32px;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  color: #3e2f1c;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  padding: 8px 0;
  transition: color 0.2s;
  position: relative;
}

.nav-links li a::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: #a67c52;
  transition: width 0.3s;
  margin: 0 auto;
}

.nav-links li a:hover {
  color: #a67c52;
}

.nav-links li a:hover::after {
  width: 100%;
}

header {
  background: linear-gradient(rgba(60,40,20,0.45), rgba(60,40,20,0.45)),
    url('https://images.unsplash.com/photo-1509042239860-f550ce710b93') no-repeat center center/cover;
  min-height: 60vh;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
}

header h1 {
  font-size: 3.5rem;
  letter-spacing: 2px;
  background: rgba(60,40,20,0.55);
  padding: 10px 32px;
  border-radius: 10px;
  margin-bottom: 16px;
}

header p {
  font-size: 1.4rem;
  background: rgba(60,40,20,0.45);
  padding: 8px 24px;
  border-radius: 8px;
}

section {
  padding: 60px 20px;
  max-width: 1000px;
  margin: auto;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #5c3b1e;
}

.products, .export {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  margin-bottom: 40px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

input, textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
}

button {
  background-color: #5c3b1e;
  color: white;
  border: none;
  padding: 10px;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
}

button:hover {
  background-color: #3e2a15;
}

footer {
  background-color: #3e2f1c;
  color: #fff;
  text-align: center;
  padding: 20px 10px;
}

.footer-logo {
  margin-bottom: 10px;
}

.footer-logo img {
  height: 48px;
  width: auto;
  display: block;
  margin: 0 auto 10px auto;
}

.map-container {
  margin-top: 16px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0,0,0,0.08);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #3e2f1c;
  cursor: pointer;
  margin-right: 16px;
}

@media (max-width: 768px) {
  header h1 {
    font-size: 2.5rem;
  }

  header p {
    font-size: 1rem;
  }

  .navbar {
    flex-direction: column;
    height: auto;
    padding: 12px 0;
  }
  .nav-links {
    flex-direction: column;
    gap: 16px;
  }
  .nav-logo img {
    margin: 12px 0 0 0;
  }
  .menu-toggle {
    display: block;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    gap: 16px;
    background: rgba(255,255,255,0.97);
    position: absolute;
    top: 72px;
    left: 0;
    width: 100%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    z-index: 999;
  }
  .nav-links.active {
    display: flex;
  }
  .navbar {
    flex-direction: row;
    height: auto;
    padding: 12px 0;
    position: relative;
  }
  .nav-logo img {
    margin: 12px 0 0 0;
  }
}
