.clients {margin-bottom: 70px}
.cards {display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px;}
.card {background: #fff; border: 1px solid #e5e5e5; padding: 30px 20px; box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05); transition: all 0.3s ease; text-align: center;}
.card img {margin: 0 auto 20px; max-width: 200px; height: auto}
.card .card-title {font-size: 20px; margin-bottom: 20px}
.card p {font-size: 15px; color: #555;}
@media (max-width: 760px) {
      .cards {grid-template-columns: 1fr; gap: 20px;}
}