/* statement.css */

.testimonials-section {
    margin-top: 30px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    text-align: left;
}

.testimonials-section h2 {
    color: #8d6e63;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.testimonial-item {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    padding: 20px;
    margin-bottom: 20px;
    text-align: left;
    transition: transform 0.3s ease;
}

.testimonial-item:hover {
    transform: translateY(-5px);
}

.testimonial-item h3 {
    color: #6d4c41;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.testimonial-item p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}
