


.container {
    max-width: 90%;
    margin: auto;
    
    padding: 20px;
    border-radius: 8px;
    
    text-align: left;
}
h2 {
    color: #333;
}
.testimonial-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}
.testimonial {
    flex: 1 1 calc(45% - 20px);
    background:white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border: 2px solid #ddd;
    max-width: 400px;
}
.name {
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
    font-size: 18px;
}
.feedback {
    font-style: italic;
    color: #555;
    font-size: 16px;
}
@media (max-width: 768px) {
    .testimonial {
        flex: 1 1 100%;
        max-width: 100%;
    }
}