.testimonial-section {
    width: 100%;
    background-color: #f2f9ff;
    color: #000;
    font-family: 'Poppins', sans-serif;
}

.testimonial-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.testimonial-content {
    flex: 1;
}

.stars-image {
    width: 100px;
    height: 23px;
    display: block;
    margin-bottom: 20px;
}

.quote-text p {
    font-size: 18px;
    line-height: 1.6;
    font-style: italic;
    margin-top: 0;
    margin-bottom: 22px;
}

.author-name {
    font-size: 18px;
    font-weight: 700;
    font-style: normal;
    display: block;
}

.testimonial-image-wrapper {
    flex: 0 0 600px;
}

.testimonial-image-wrapper img {
    width: 100%;
    height: auto;
    max-width: 600px;
    display: block;
}

@media (max-width: 1024px) {
    .testimonial-container {
        flex-direction: column-reverse;
        gap: 40px;
    }

    .testimonial-image-wrapper {
        width: 100%;
        max-width: 600px;
        flex: auto;
    }

    .testimonial-content {
        padding: 0 16px;
    }
}