/* Page Header */
.page-header {
    background-color: #6ABF4B;
    color: #fff;
    text-align: center;
    padding: 50px 20px;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.page-header p {
    font-size: 1.2rem;
}

.testimonial-item {
    text-align: center;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 20px;
}

.testimonial-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
    border: 3px solid #ddd;
}

.stars {
    color: #f4c430;
    font-size: 18px;
}

h4 {
    margin-top: 10px;
    font-size: 16px;
    color: #333;
}

h4 {
    margin-top: 10px;
    font-size: 16px;
    color: #333;
}

/* Video Testimonials Section */
.video-testimonials {
    padding: 40px 20px;
    text-align: center;
}

.video-testimonials h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 30px;
}

.video-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.video-item {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.video-item video {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 10px;
}

.video-item p {
    font-size: 1rem;
    color: #555;
    margin: 0;
}

