.testimonial-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.testimonial-section {
    text-align: center;
}

.testimonial-section-title {
    color: #132148;
    text-align: center;
    font-family: Oswald;
    font-size: 64px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    margin-bottom: 20px;
    font-weight: bold;
}

.testimonial-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 0px;
}

.testimonial-card {
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #DFEEFF;
    background: #FFF;
    box-shadow: 0px 14px 54px 0px rgba(20, 56, 99, 0.10);
    flex: 1;
    max-width: 350px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.testimonial-stars {
    color: #ffc107;
    font-size: 25px;
    margin-bottom: 15px;
}

.testimonial-text {
    color: #2C3B20;
    font-family: "Source Sans 3";
    font-size: 23px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    margin-bottom: 20px;
    flex-grow: 1;
    line-height: 1.5;
    text-align: left;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author-image {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.testimonial-author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-author-info {
    text-align: left;
}

.testimonial-author-name {
    font-weight: bold;
    color: #333;
    font-size: 16px;
}

.testimonial-verified-buyer {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #6ab04c;
}

.testimonial-verified-icon {
    width: 16px;
    height: 16px;
    background-color: #6ab04c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 5px;
}

.testimonial-verified-icon svg {
    width: 10px;
    height: 10px;
    color: white;
}

.testimonial-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.testimonial-pagination-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: background-color 0.3s;
}

.testimonial-pagination-dot.active {
    background-color: #6ab04c;
    width: 30px;
    border-radius: 5px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .testimonial-container {
        flex-wrap: wrap;
    }

    .testimonial-card {
        flex: 0 0 calc(50% - 15px);
        max-width: calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .testimonial-container {
        flex-direction: column;
        align-items: center;
    }

    .testimonial-card {
        flex: 0 0 100%;
        max-width: 450px;
    }

    .testimonial-section-title {
        font-size: 30px;
    }
}

@media (max-width: 576px) {
    .testimonial-section-title {
        font-size:13vw;
    }

    .testimonial-card { 
        padding: 20px;
    }
}