* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  line-height: 1.6;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  padding: 15px 8%;
  background: white;
  position: sticky;
  top: 0;
}

.nav-links {
  display: flex;
  gap: 20px;
  list-style: none;
}

.logo {
  color: #b68d40;
  font-weight: bold;
}

.btn {
  background: #b68d40;
  color: white;
  padding: 10px 18px;
  text-decoration: none;
  border-radius: 5px;
}

/* HERO */
.hero {
  height: 90vh;
  background: url('https://images.unsplash.com/photo-1602751584552-8ba73aad10e1') center/cover no-repeat;
  position: relative;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
}

.hero-content {
  position: relative;
  color: white;
  top: 50%;
  transform: translateY(-50%);
  padding: 0 8%;
}

/* GRID */
.grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

/* FEATURES */
.features {
  padding: 60px 20px;
  text-align: center;
}

.card {
  padding: 20px;
  background: #f5f5f5;
  border-radius: 10px;
}

/* PRODUCTS */
.products {
  padding: 60px 20px;
  text-align: center;
}

.product-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.product-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.product-card button {
  width: 100%;
  padding: 10px;
  background: #b68d40;
  border: none;
  color: white;
}

/* OFFERS */
.offers {
  background: url('https://images.unsplash.com/photo-1599643478518-a784e5dc4c8f') center/cover no-repeat;
  padding: 80px;
  text-align: center;
  color: white;
}

.offer-box {
  background: rgba(0,0,0,0.6);
  padding: 30px;
  display: inline-block;
  border-radius: 10px;
}

/* TESTIMONIALS */
.testimonials {
  padding: 60px 20px;
  text-align: center;
}

.testimonial {
  background: #f1f1f1;
  padding: 20px;
  border-radius: 10px;
}

/* CTA */
.cta {
  background: #b68d40;
  color: white;
  padding: 60px;
  text-align: center;
}

/* FAQ (NEW STYLE) */
.faq {
  padding: 60px 20px;
  background: #fafafa;
  text-align: center;
}

.faq-container {
  max-width: 700px;
  margin: auto;
  margin-top: 30px;
}

details {
  background: white;
  margin-bottom: 10px;
  padding: 15px;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

summary {
  font-weight: bold;
  cursor: pointer;
}

details p {
  margin-top: 10px;
}

/* CONTACT (NEW STYLE) */
.contact {
  padding: 60px 20px;
  background: #f5f5f5;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 900px;
  margin: auto;
}

.contact-info {
  padding: 20px;
}

.contact-form {
  background: white;
  padding: 25px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-form input,
.contact-form textarea {
  padding: 10px;
  border: 1px solid #ddd;
}

.contact-form button {
  background: #b68d40;
  color: white;
  padding: 10px;
  border: none;
}

/* FOOTER */
footer {
  background: black;
  color: white;
  text-align: center;
  padding: 30px;
}

/* RESPONSIVE */
@media(max-width: 768px) {
  .nav-links {
    display: none;
  }

  .contact-container {
    grid-template-columns: 1fr;
  }
}