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

body {
  background-color: #f6f8fb;
}

.logistics-hero {
  margin-top: 75px;
  min-height: 42vh;
  background: linear-gradient(rgba(18, 53, 88, 0.84), rgba(18, 53, 88, 0.84)),
    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 {
  font-size: 1.1rem;
  max-width: 720px;
}

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

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

.section-title p {
  color: #617285;
  margin-top: 10px;
}

.service-card {
  height: 100%;
  background-color: #fff;
  border-radius: 16px;
  padding: 28px 22px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(18, 53, 88, 0.2);
}

.service-card i {
  font-size: 2rem;
  color: #123558;
  margin-bottom: 15px;
}

.service-card h3 {
  font-size: 1.2rem;
  color: #1f2f40;
  margin-bottom: 10px;
}

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

.why-uride {
  background-color: #fff;
}

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

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

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

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