.intro {
    max-width: 800px;
    margin: 0 auto 2rem;
    text-align: center;
}

.client-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.client-card {
    background-color: var(--apple-gray);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.client-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.client-logo {
    width: 100px;
    height: 100px;
    margin-bottom: 1rem;
    object-fit: contain;
}

.client-card h2 {
    color: var(--apple-blue);
    margin-bottom: 1rem;
}

.client-card p {
    text-align: justify;
}

@media (max-width: 768px) {
    .client-grid {
        grid-template-columns: 1fr;
    }
}

