.container-fluid.main-content.ourclients {
    padding: 2rem;
    max-width: 1200px;
}

.header-clients-section {
    text-align: center;
    margin-bottom: 2rem;
}

.header-clients-section small {
    text-transform: uppercase;
    font-weight: 600;
    color: white;
    letter-spacing: 1px;
    font-size: 0.8rem;
}

.header-clients-section h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-top: 0.5rem;
    color: white;
}

.header-clients-section p {
    color: white;
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.client-logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    justify-items: center;
    align-items: center;
    margin-top: 2rem;
}

.client-logo-item {
    background-color: #5c9344;
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    padding: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 120px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.client-logo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.client-logo-item img {
    max-width: 100%;
    max-height: 80px;
    height: auto;
    object-fit: contain;
}

@media (max-width: 576px) {
    .client-logo-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    }
}