.why-us-section {
  background-color: #192024;
  padding: 6rem 1rem;
  color: #fff;
  text-align: center;
}

.why-us-title {
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 3rem;
}

.why-us-grid {
  display: grid;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.why-us-card {
  background-color: #192024;
  border-radius: 12px;
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.why-us-card img {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  filter: invert(1);
}

.why-us-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  font-weight: 400;
}

.why-us-card p {
  font-size: 0.95rem;
  line-height: 1.5;
  font-weight: 300;
  max-width: 300px;
}