.partners-section {
    text-align: center;
    margin-bottom: 40px;
}

.partners-subtitle {
    color: #007bff;
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 10px;
}

.partners-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 25px;
}

.partners-logos-wrapper {
    width: 100%;
    overflow: hidden;
    background: #fff;
    padding: 20px 0;
    box-shadow: 
        0 -4px 8px rgba(0, 0, 0, 0.1),
        0  4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    margin-bottom: 5%;
}

.partners-logos-track {
    display: flex;
    align-items: center;
    animation: partners-scroll 20s linear infinite;
    white-space: nowrap;
}

.partners-logos-track img {
    width: 150px;
    height: 100px;
    margin: 0 20px;
    object-fit: contain;
    flex-shrink: 0;
}

@keyframes partners-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (max-width: 768px) {
    .partners-logos-track img {
        width: 100px;
        height: 70px;
        margin: 0 10px;
    }
    .partners-subtitle {
        font-size: 1.2rem;
    }
    .partners-title {
        font-size: 2rem;
    }
}
