body {
  margin: 0;
  padding: 0;
  font-family: 'Arial', sans-serif;
  background: url('../images/bg.jpg') no-repeat center center fixed;
  background-size: cover;
  color: #333;
  text-align: center;
}

.logo {
  width: 120px;
  margin: 20px auto 10px;
  display: block;
}

nav ul {
  list-style: none;
  padding: 0;
  margin: 0 auto 20px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

nav ul li {
  display: inline-block;
}

nav ul li a {
  text-decoration: none;
  color: #bfa046;
  font-weight: bold;
  padding: 8px 14px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

nav ul li a:hover,
nav ul li a:visited {
  color: #bfa046;
}

.hero,
.content {
  background-color: rgba(255, 255, 255, 0.9);
  margin: 40px auto;
  max-width: 800px;
  padding: 40px 25px;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

h1, h2 {
  color: #bfa046;
}

.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 24px;
  background-color: #bfa046;
  color: #fff;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #a78d3f;
}

footer {
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.95);
  color: #333;
  font-size: 14px;
  margin-top: 60px;
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
}

.whatsapp-float img {
  width: 100px;
  height: 100px;
}

.products-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.product {
  background-color: #fff;
  width: 100%;
  max-width: 300px;
  padding: 15px;
  border: 1px solid #eee;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease;
}

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

.product-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 10px;
}

.product h2 {
  font-size: 18px;
  color: #caa242;
  margin-bottom: 10px;
}

.product p {
  font-size: 14px;
  color: #333;
  line-height: 1.6;
}

.contact-info {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  margin-top: 20px;
}

.contact-label {
  color: #333;
}

.contact-link {
  color: #caa242;
  text-decoration: none;
  font-weight: bold;
}

.contact-link:hover {
  text-decoration: underline;
}