/* Clients Page */
#clients {
    padding: 60px 0;
    background: var(--light-bg-color);
}

#clients h1 {
    font-family: var(--heading-font);
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--heading-color);
}

#clients .section-subtitle {
    font-family: var(--body-font);
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 40px;
}

.client-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.client-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 10px var(--shadow-color);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.client-card:hover {
    transform: translateY(-10px);
}

.client-card-image {
    background: #f0f0f0;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 120px;
    border-bottom: 1px solid var(--border-color);
}

.client-card-image img {
    max-width: 80%;
    max-height: 100%;
    object-fit: contain;
}

.client-card-content {
    padding: 25px;
}

.client-card-content p {
    font-family: var(--body-font);
    font-size: 0.95rem;
    color: var(--text-color);
    line-height: 1.6;
}