.testimonials-section {
    background-color: var(--secondary-color);
}

.testimonial-card {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid #333;
    position: relative;
    height: 100%;
}

.testimonial-card::before {
    content: '"';
    font-size: 4rem;
    color: var(--accent-color);
    position: absolute;
    top: -10px;
    left: 20px;
    font-family: serif;
}

.testimonial-author {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #333;
}

.testimonial-author span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}