/* ================= ABOUT US ================= */

.about-section {
  padding: 100px 0;
  background: #fff;
}

/* HEAD */
.about-head {
  margin-bottom: 70px;
}

.about-badge {
  display: inline-block;
  background: rgba(159,45,47,.1);
  color: #9f2d2f;
  padding: 6px 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 14px;
}

.about-head h2 {
  font-size: 42px;
  font-weight: 800;
  color: #0f1c2d;
  margin-bottom: 10px;
}

.about-head p {
  font-size: 16px;
  color: rgba(15,28,45,.65);
  line-height: 1.6;
}

/* STORY */
.about-story {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 90px;
}

.about-text h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
}

.about-text p {
  font-size: 15px;
  color: rgba(15,28,45,.7);
  line-height: 1.7;
  margin-bottom: 12px;
}

.about-image img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 30px 80px rgba(0,0,0,.15);
}

/* VALUES */
.about-values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 80px;
}

.value-card {
  background: #fff;
  border-radius: 22px;
  padding: 30px;
  text-align: center;
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 15px 40px rgba(0,0,0,.06);
  transition: .25s ease;
}

.value-card i {
  font-size: 34px;
  color: #9f2d2f;
  margin-bottom: 14px;
}

.value-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.value-card p {
  font-size: 14px;
  color: rgba(15,28,45,.65);
  line-height: 1.5;
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 60px rgba(0,0,0,.12);
}

/* TRUST */
.about-trust {
  background: #f8f9fa;
  border-radius: 28px;
  padding: 50px;
  text-align: center;
}

.about-trust h3 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 20px;
}

.about-trust ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-trust li {
  font-size: 15px;
  margin-bottom: 10px;
  color: rgba(15,28,45,.75);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .about-story {
    grid-template-columns: 1fr;
  }
  .about-values {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .about-head h2 {
    font-size: 30px;
  }
  .about-values {
    grid-template-columns: 1fr;
  }
}
