.trust {
    padding: 100px 0;
    background: #fff;
    overflow: hidden;
}

.trust__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.trust__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
}

.trust__line {
    width: 90px;
    height: 4px;
    background: #0F75BB;
    margin-bottom: 20px;
    border-radius: 2px;
}

.trust__title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0;
}

.trust__description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 60px;
}

.trust__logos {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin: 40px 0;
    padding: 20px 0;
}

.trust__logos-track {
    display: flex;
    animation: scroll 30s linear infinite;
}

.trust__logo-group {
    display: flex;
    justify-content: space-around;
    align-items: center;
    min-width: 100%;
    gap: 40px;
    padding: 0 20px;
}

.trust__logo {
    height: 100px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.trust__logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

.trust__indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.trust__indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.trust__indicator.active {
    background: #0F75BB;
    transform: scale(1.2);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

.trust__logos:hover .trust__logos-track {
    animation-play-state: paused;
}

@media (max-width: 768px) {
    .trust {
        padding: 60px 0;
    }

    .trust__title {
        font-size: 2rem;
    }

    .trust__description {
        font-size: 1rem;
        padding: 0 20px;
    }

    .trust__logo {
        height: 40px;
    }

    .trust__logo-group {
        gap: 20px;
    }
}

.trust__logos::before,
.trust__logos::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
}

.trust__logos::before {
    left: 0;
    background: linear-gradient(to right, #fff, transparent);
}

.trust__logos::after {
    right: 0;
    background: linear-gradient(to left, #fff, transparent);
}