.master-testimonials-container {
    clear: both !important; 
    width: 100% !important; 
    display: block !important;
    margin-top: 0 !important; 
    margin-bottom: 60px !important; 
    text-align: center;
    /* This padding rule forces the space inside the container */
    padding: 40px 15px 0 15px !important; 
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
.voices-of-trust-title {
    font-size: 2.5em;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
    text-transform: uppercase;
}
.master-testimonials-container .sub-heading {
    font-size: 1.2em;
    color: #555;
    margin-bottom: 30px;
}
/* Slider container */
.testimonials-slider {
    display: flex;
    gap: 20px;
    overflow-x: hidden;
    scroll-snap-type: x mandatory;
    padding-bottom: 20px;
    cursor: grab;
    -webkit-overflow-scrolling: touch;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    position: relative;
}
.testimonials-slider:hover {
    cursor: grabbing;
}
.testimonial-item {
    flex-shrink: 0;
    width: 300px;
    scroll-snap-align: center;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 30px;
    text-align: left;
    position: relative;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: default;
}
.testimonial-item .quote-icon {
    font-size: 4em;
    color: #103550;
    line-height: 1;
    font-family: Georgia, serif;
    position: absolute;
    top: 10px;
    left: 10px;
    opacity: 0.2;
}
.testimonial-content {
    font-style: italic;
    color: #444;
    margin-top: 20px;
    padding-top: 10px;
    flex-grow: 1;
    line-height: 1.6;
}

/* 5-Star Rating Styling */
.testimonial-item .star-rating {
    overflow: hidden;
    position: relative;
    height: 1em;
    line-height: 1;
    font-size: 1.2em;
    width: 5.2em;
    font-family: 'star-rating';
    margin-top: 15px;
    margin-bottom: 15px;
}
.testimonial-item .star-rating:before {
    content: '★★★★★';
    color: #d3ced2;
    float: left;
    top: 0;
    left: 0;
    position: absolute;
}
.testimonial-item .star-rating span {
    overflow: hidden;
    float: left;
    top: 0;
    left: 0;
    position: absolute;
    padding-top: 1.5em;
}
.testimonial-item .star-rating span:before {
    content: '★★★★★';
    top: 0;
    position: absolute;
    left: 0;
    color: #103550;
}

/* Footer layout for Date and Author */
.testimonial-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    border-top: 1px solid #f0f0f0;
    padding-top: 15px;
}
.testimonial-date {
    font-size: 0.85em;
    color: #888;
}
.testimonial-author {
    font-weight: bold;
    color: #103550;
    font-size: 0.9em;
    text-align: right;
}