.company-logo {
    height: 40px;
    width: auto;
    opacity: 0.7;
    filter: grayscale(1);
    transition: all 0.3s ease;
}

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

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

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.bullet-list-enhanced li {
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .company-logo {
        height: 30px;
    }
} 