.partners-section {
    padding: 6rem 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.partners-section h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--lot-green);
    margin-bottom: 2rem;
    font-weight: 800;
    background: linear-gradient(transparent 65%, rgba(232, 119, 34, 0.3) 65%);
    background-size: 100% 100%;
    line-height: 1.3;
    padding: 0 0.3rem;
    border-radius: 4px;
    display: inline-block;
}

.partners-carousel {
    height: 400px;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    background-color: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
}

.partners-track {
    display: flex;
    gap: 4rem;
    align-items: center;
    will-change: transform;
    padding: 0 2rem;
}

.partner-item {
    flex-shrink: 0;
    width: 250px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.partner-item:hover {
    transform: scale(1.1);
}

.partner-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.partner-item:hover img {
    filter: grayscale(0%);
}

@media (max-width: 768px) {
    .partners-section {
        padding: 2rem 1rem;
    }
}
