#our-impact {
    padding: 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.impact-header h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.impact-header p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #666;
}

.testimonials-carousel {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.testimonial-slide {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    flex: 1 1 calc(48% - 40px);
    max-width: calc(48% - 40px);
}

.testimonial-slide video {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.testimonial-author {
    margin-top: 10px;
    font-style: italic;
}

@media (max-width: 768px) {
    .testimonial-slide {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .impact-header h2 {
        font-size: 28px;
    }

    .impact-header p {
        font-size: 14px;
    }
}
