.testimonials-section-v2 {
    background-color: #f8f9fa;
    padding: 6rem 1rem;
}

.testimonials-container-v2 {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.testimonial-main .testimonial-subtitle-alt {
    color: #007bff;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.testimonial-main .testimonial-title-alt {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.testimonial-main .testimonial-description {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 2rem;
}

.testimonial-card-large {
    background-color: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
}

.testimonial-card-large .quote-icon {
    font-size: 5rem;
    color: #007bff;
    opacity: 0.1;
    position: absolute;
    top: 1rem;
    left: 1.5rem;
}

.testimonial-card-large .quote-text {
    font-size: 1.2rem;
    font-style: italic;
    color: #343a40;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.author-info {
    display: flex;
    align-items: center;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
}

.author-avatar .fa-user {
    font-size: 1.5rem;
    color: #adb5bd;
}

.author-name {
    font-weight: 700;
    font-size: 1.1rem;
}

.author-title {
    color: #6c757d;
}


.testimonials-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonial-card-small {
    background-color: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.testimonial-card-small .stars {
    color: #ffc107;
    margin-bottom: 1rem;
}

.quote-text-small {
    font-size: 1rem;
    color: #495057;
    margin-bottom: 1.5rem;
}

.author-info-small {
    display: flex;
    align-items: center;
}

.author-avatar-small {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-weight: 600;
    color: white;
}

.initial-avatar {
    background-color: #007bff;
}

.author-name-small {
    font-weight: 600;
}

.author-title-small {
    font-size: 0.9rem;
    color: #6c757d;
}

.companies-section {
    margin-top: 2rem;
}

.companies-title {
    font-weight: 600;
    color: #6c757d;
    margin-bottom: 1rem;
    text-align: center;
}

.company-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.btn-outline {
    background-color: transparent;
    border: 1px solid #ced4da;
    color: #495057;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    font-weight: 500;
    text-align: center;
    transition: all 0.2s ease-in-out;
}

.btn-outline:hover {
    background-color: #f1f3f5;
    border-color: #adb5bd;
}


@media (max-width: 992px) {
    .testimonials-container-v2 {
        grid-template-columns: 1fr;
    }
}
