.reviews-section {
    width: 100%;
    max-width: 37.5em;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    text-align: center;
    font-size: 1.5625em;
}

.reviews-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.review {
    min-width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1.25em;
    box-sizing: border-box;
    text-align: center;
    background-color: #006980;
    border: 0.0625em solid #ddd;
    border-radius: 1.25em;
    font-size: 1.2rem;
    font-family: Arial, sans-serif;
    color: white;
    height: 18.75em; /* Adjust height to fit stars and review text */
}

.stars {
    width: 6.25em; /* Set the width of the star image */
    margin-bottom: 0.625em; /* Space between stars and review text */
}

.review p {
    font-style: italic;
    margin: 0;
}


.reviews-section::before, .reviews-section::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 3.125em;
    z-index: 2;
}

.reviews-section::before {
    left: 0;
    
}

.reviews-section::after {
    right: 0;
    
}