.testimonials-section {
    padding: 60px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.section-title {
    font-size: 36px;
    color: #0073e6;
    margin-bottom: 40px;
}

.testimonials-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.testimonial-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 320px;
    padding: 20px;
    text-align: left;
    border-left: 5px solid transparent;
}

.testimonial-card img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 10px;
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.user-name {
    font-size: 18px;
    font-weight: bold;
    margin: 0;
}

.user-job {
    font-size: 14px;
    color: #777;
    margin: 0;
}

.testimonial-title {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.testimonial-text {
    color: #555;
    line-height: 1.6;
}

.border-blue {
    border-color: #0073e6;
}

.border-yellow {
    border-color: #ffd700;
}

.border-green {
    border-color: #32cd32;
}
