/* Testimonial section styles */
.testimonial-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 1.5rem;
    border-left: 4px solid #F6A623;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.testimonial-quote {
    font-style: italic;
    color: #4A5568;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.testimonial-quote::before {
    content: '"';
    font-size: 2.5rem;
    color: #F6A623;
    position: absolute;
    left: 0;
    top: -0.5rem;
    font-family: Georgia, serif;
}

.testimonial-author {
    font-weight: 600;
    color: #2D3748;
    margin-bottom: 0.25rem;
}

.testimonial-company {
    color: #718096;
    font-size: 0.875rem;
} 