body {
  font-family: "Segoe UI", sans-serif;
  background: #f5f5f5;
}

/* LOGO */
.logo {
  text-align: center;
  padding: 20px;
}
.logo img {
  height: 90px;
}

/* SLIDER */
.carousel-item {
  height: 700px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}
.slider-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
}
.slider-content h1 {
  font-size: 3rem;
}

/* CARDS */
.card-hover {
  border: none;
  border-radius: 10px;
  overflow: hidden;
  transition: 0.3s;
}
.card-hover:hover {
  transform: translateY(-5px);
}

.card-img-container {
  position: relative;
}

.price-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #ff6a00;
  color: white;
  padding: 5px 10px;
  font-weight: bold;
}

.card-link {
  text-decoration: none;
  color: black;
}

/* CTA */
.cta {
  background: #0d1b3d;
  color: white;
  padding: 60px;
  text-align: center;
}

/* FOOTER */
footer {
  background: #0d1b3d;
  color: white;
  padding: 50px;
  text-align: center;
  margin-top: 50px;
}

@media (min-width: 992px) {
  .col-lg-8 {
    flex: 0 0 auto;
    width: 75%;
  }
}

@media (min-width: 992px) {
  .col-lg-4 {
    flex: 0 0 auto;
    width: 25%;
  }
}
