body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #F5F5F5;
  color: #222;
}

.navbar {
  background-color: #222222;
}

.navbar a {
  color: #C9B38B !important;
}

.hero {
  background: url('../images/Hero.jpg') center/cover no-repeat;
  color: #F5F5F5;
  height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
}

.hero-content {
  position: relative;
  z-index: 1;
}

.section-title {
  color: #A67C52;
  margin-bottom: 40px;
}

.carousel-item img {
  height: 500px;
  object-fit: cover;
  border-radius: 12px;
}

.testimonial {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.process-step {
  background: #fff;
  padding: 20px;
  margin-bottom: 20px;
  border-left: 5px solid #C9B38B;
  border-radius: 8px;
}

.btn-gold {
  background-color: #C9B38B;
  color: #222;
  border: none;
}

.btn-gold:hover {
  background-color: #A67C52;
  color: #fff;
}

footer {
  background-color: #222222;
  color: #C9B38B;
  padding: 20px;
  text-align: center;
}

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

@media (min-width: 576px) {
  .carousel-item img {
    height: 300px;
  }
}

@media (min-width: 768px) {
  .carousel-item img {
    height: 400px;
  }
  .hero{
    height: 60vh;
  }
}

@media (min-width: 992px) {
  .carousel-item img {
    height: 500px;
  }
  .hero{
    height: 100vh;
  }
}

.navbar-toggler{
  background-color: #C9B38B;
}