.trusted-header {
    text-align: center;
    padding: 40px 0 20px;
    font-size: 2rem;
    color: #333;
    font-family: system-ui, -apple-system, sans-serif;
}

.trusted-slider {
    background: white;
    padding: 20px 0;
    overflow: hidden;
}

.slider-container {
    width: 100%;
    margin: auto;
    overflow: hidden;
    position: relative;
}

.slide-track {
    display: flex;
    width: calc(200px * 10);
    animation: scroll 20s linear infinite;
}

.slide {
    width: 200px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide img {
    width: 100%;
    height: auto;
    max-height: 50px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.slide img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-200px * 5));
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #ffffff;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.testimonial-header {
    text-align: center;
    margin-bottom: 60px;
}

.testimonial-header h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #000;
    font-weight: bold;
}

.testimonial-header p {
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    position: relative;
}

.profile-section {
    position: relative;
    margin-bottom: 20px;
}

.profile-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
}

.quote-mark {
    position: absolute;
    top: -10px;
    left: -10px;
    font-size: 60px;
    color: #1e88e5;
    font-family: Georgia, serif;
}

.rating {
    color: #ff9800;
    margin-bottom: 15px;
}

.testimonial-content {
    margin-bottom: 20px;
    color: #555;
    line-height: 1.6;
}

.testimonial-author h4 {
    color: #333;
    font-size: 1.1rem;
}

.testimonial-author span {
    color: #666;
    font-weight: normal;
}

@media (max-width: 768px) {
    .container {
        padding: 20px;
    }

    .testimonial-header h1 {
        font-size: 2rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

.recovery-section {
    padding: 60px 0;
    background-color: #fff;
    overflow: hidden;
}

.containerr {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.recovery-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
    color: #333;
    font-weight: 600;
}

.slider-container {
    position: relative;
    overflow: hidden;
    padding: 0 40px;
}

.broker-logos {
    display: flex;
    gap: 30px;
    animation: scroll 20s linear infinite;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-200px * 8));
    }
}

.broker-logo {
    flex: 0 0 200px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.broker-logo:hover {
    transform: scale(1.05);
}

.logo {
    width: auto;
    height: 60px;
    max-width: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    z-index: 2;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}

.slider-btn:hover {
    background: rgba(0, 0, 0, 0.7);
}

@media (max-width: 768px) {
    .broker-logo {
        flex: 0 0 150px;
    }

    .recovery-title {
        font-size: 24px;
    }
}