/* Fix for Children's Parents speaks for us section */
.testimonial-section {
    padding: 50px 0;
    background-color: #f8f9fa;
}

.testimonial-section h2 {
    color: #c36;
    font-size: 32px;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 600;
}

.testimonial-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 25px;
    margin-bottom: 30px;
    height: 100%;
    transition: transform 0.3s ease;
}

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

.testimonial-card img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 15px;
    display: block;
    border: 3px solid #D9B1A3;
}

.testimonial-card h3 {
    color: #FF9934;
    font-size: 22px;
    text-align: center;
    margin-bottom: 10px;
}

.testimonial-card h6 {
    color: #c36;
    font-size: 16px;
    text-align: center;
    margin-bottom: 15px;
}

.testimonial-card p {
    color: #555;
    font-size: 16px;
    line-height: 1.6;
    text-align: center;
}

.view-more-btn {
    background: #FF9934;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    display: inline-block;
    margin: 20px auto 0;
    text-align: center;
    transition: background 0.3s ease;
}

.view-more-btn:hover {
    background: #e07e1b;
    color: #fff;
}

.testimonial-container {
    display: flex;
    justify-content: center;
}
