body {
  font-family: 'Poppins', sans-serif;
  background-color: white;
  color: #444;
  margin: 0;
  padding: 0;
}

/* Header */
.navbar {
  background-color: #5d4037;
  padding: 1rem 2rem;
}

.navbar-brand img {
  height: 50px;
}

.navbar-nav .nav-link {
  color: #fff !important;
  font-weight: 600;
  letter-spacing: 1px;
  transition: 0.3s;
}

.navbar-nav .nav-link:hover {
  color: #f0e3d2 !important;
}

/* Hero Banner */
.hero-banner {
  width: 100%;
  height: 380px;
  background: url('../img/img1.jpg') center/cover no-repeat;
  border-radius: 12px;
  margin-top: 1.5rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

/* Card Section */
.card-section {
  margin: 4rem auto;
}

.feature-card {
  background-color: #f7f3ed;
  border: none;
  border-radius: 20px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.feature-card img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  border-radius: 15px 15px 0 0;
}

.feature-card span {
  display: block;
  font-weight: 600;
  font-size: 1.1rem;
  color: #5d4037;
  text-align: center;
  padding: 15px 0;
}

/* Buttons */
.button-section {
  text-align: center;
  margin-bottom: 4rem;
}

.btn-custom {
  border-radius: 50px;
  padding: 12px 50px;
  font-weight: 600;
  font-size: 1.1rem;
  margin: 0 10px;
  transition: 0.3s;
}

.btn-outline-brown {
  border: 2px solid #5d4037;
  color: #5d4037;
  background-color: #fff;
}

.btn-outline-brown:hover {
  background-color: #f7f3ed;
  color: #5d4037;
}

.btn-brown {
  background-color: #5d4037;
  color: #fff;
  border: 2px solid #5d4037;
}

.btn-brown:hover {
  background-color: #4a332c;
}

/* Footer */
footer {
  background-color: #5d4037;
  color: #fff;
  padding: 30px 0;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  gap: 20px;
}

.footer-content .social-icons img {
  width: 35px;
  height: 35px;
  margin-left: 10px;
  border-radius: 50%;
  transition: 0.3s;
}

.footer-content .social-icons img:hover {
  transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
  .hero-banner {
    height: 250px;
  }

  .feature-card img {
    height: 150px;
  }

  .btn-custom {
    width: 80%;
    margin: 10px auto;
  }
}
