   .testimonials {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        margin: 0 auto;
        max-width: 1200px;
    }

    .testimonial-card {
        background-color: white;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        padding: 30px;
        max-width: 350px;
        text-align: center;
    }

    .testimonial-card h4 {
        font-size: 20px;
        color: #2a9d8f;
        margin-top: 15px;
        font-weight: bold;
    }

    .testimonial-card p {
        font-size: 16px;
        line-height: 1.6;
        color: #555;
    }

    .testimonial-card:before {
        content: "“";
        font-size: 50px;
        color: #e76f51;
        position: relative;
        top: 10px;
    }

    .testimonial-card:after {
        content: "”";
        font-size: 50px;
        color: #e76f51;
        position: relative;
        bottom: 20px;
    }