* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #f6f8fb;
}

.rental-hero {
  margin-top: 75px;
  min-height: 42vh;
  background: linear-gradient(rgba(18, 53, 88, 0.8), rgba(18, 53, 88, 0.8)),
    url("./assets/banner-pic.webp") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 40px 20px;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.hero-content p {
  max-width: 700px;
  font-size: 1.1rem;
}

.section-title {
  text-align: center;
  margin-bottom: 35px;
}

.section-title h2 {
  color: #123558;
  font-weight: 700;
}

.rental-card {
  background: #fff;
  border-radius: 14px;
  padding: 18px;
  text-align: center;
  height: 100%;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.rental-card img {
  width: 100%;
  height: 180px;
  object-fit: contain;
}

.rental-card h3 {
  color: #1f2f40;
  margin: 15px 0 8px;
}

.rental-card p {
  color: #516273;
  margin: 0;
}

.rental-services {
  background: #fff;
}

.service-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 800px;
  margin: 0 auto;
  padding: 0;
}

.service-list li {
  background: #eef3f8;
  border-left: 4px solid #123558;
  border-radius: 10px;
  padding: 14px 16px;
  color: #2a3f55;
  font-weight: 500;
}

.cta-box {
  background: #123558;
  color: #fff;
  border-radius: 16px;
  padding: 40px 25px;
  text-align: center;
}

.cta-box h2 {
  margin-bottom: 10px;
}

.cta-box p {
  margin-bottom: 20px;
}

.cta-btn {
  display: inline-block;
  background: #fff;
  color: #123558;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 999px;
  text-decoration: none;
}

@media (max-width: 767px) {
  .hero-content h1 {
    font-size: 2.2rem;
  }

  .service-list {
    grid-template-columns: 1fr;
  }
}
