/* Hero Section for Testimonials */
.testimonials-page .hero {
    padding: 5.5rem 1.5rem 3rem;
    min-height: auto;
    background: linear-gradient(135deg, #e8edf0 0%, #d8dfe3 100%);
    margin: 0;
}

.testimonials-page .hero h1 {
    color: var(--text-primary);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0;
    position: relative;
    padding-bottom: 1rem;
}

.testimonials-page .hero h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.testimonials-page .hero .hero-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.2rem;
    margin-top: 1.25rem;
    margin-bottom: 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.testimonials-section {
    padding: 3rem 0 4rem;
    background-color: #f9f9f9;
}

.testimonials-section .section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr; /* one quote per line */
    gap: 2rem;
}

.testimonial {
    background: #fff;
    border-radius: 8px;
    padding: 1.75rem 1.75rem 1.5rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.testimonial-text {
    position: relative;
    font-style: italic;
    margin-bottom: 1rem;
    padding-left: 1.75rem;
}

.testimonial-text::before {
    content: "\201C"; /* left double quotation mark */
    position: absolute;
    left: 0;
    top: -0.6rem;
    font-size: 3rem;
    line-height: 1;
    color: rgba(0, 0, 0, 0.12);
    font-family: Georgia, "Times New Roman", serif;
}

.testimonial-author {
    font-weight: 600;
    color: #2c3e50;
}

.testimonials-cta {
    margin-top: 3rem;
    text-align: center;
}
@media (max-width: 768px) {
    .testimonials-page .hero {
        padding: 4.5rem 1rem 2.5rem;
    }

    .testimonials-page .hero h1 {
        font-size: 2rem;
    }

    .testimonials-page .hero .hero-subtitle {
        font-size: 1.1rem;
    }
}
