@charset "utf-8";


.why-us {
  padding: 60px 20px;
  background-color: #f9f9f9;
  font-family: "Arimo", "noto-serif" ;
}

.why-us .container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.why-us h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #333;
}

.features-grid {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.feature-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 8px;
  width: 300px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 15px;
  color: #0066cc;
}

.feature-card p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.5;
}