/* Testimonial Section Styles */
.testimonial-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 15px;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
}

.quote-mark {
    font-family: serif;
    font-size: 4rem;
    color: #bf2626;
    line-height: 1;
    margin-bottom: -20px;
    opacity: 0.2;
}

.testimonial-body {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    font-style: italic;
    flex-grow: 1;
    margin-bottom: 20px;
}

.testimonial-footer {
    margin-top: auto;
}

.client-name {
    font-weight: 700;
    color: #333;
    margin-bottom: 2px;
    font-size: 0.9rem;
}

.client-position {
    color: #bf2626;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Red divider similar to Sectors for visual consistency */
.divider-red-small {
    width: 25px;
    height: 2px;
    background-color: #bf2626;
    margin-bottom: 15px;
}