/* Testimonial Badge Fix */
.testimonial-badge {
    display: block;
    background-color: #f0f0f0;
    color: #222;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    margin: 0 auto 15px;
    text-align: center;
    width: fit-content;
}

/* Updated heading style */
.testimonials-header h2 {
    display: inline-block;
    font-weight: 700;
    color: #222;
}

@media (max-width: 768px) {
    .testimonial-badge {
        display: block;
        margin: 10px auto 0;
        font-size: 10px;
    }
    
    .testimonials-header h2 {
        display: block;
        text-align: center;
    }
}