.st-carousel-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    border-radius: 12px;
}
.st-carousel-track {
    display: flex;
    transition: transform 0.4s ease-in-out;
}
.st-carousel-item {
    flex: 0 0 100%;
    box-sizing: border-box;
    padding: 20px;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border-radius: 8px;
    margin: 10px;
}
.st-card-inner {
    text-align: center;
}
.st-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 15px;
    border: 3px solid #eee;
}
.st-name {
    margin: 0 0 5px;
    font-size: 20px;
    font-weight: 700;
}
.st-meta {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}
.st-service {
    font-size: 13px;
    font-weight: bold;
    color: #0073aa;
    text-transform: uppercase;
    margin-bottom: 15px;
}
.st-comment {
    font-size: 16px;
    font-style: italic;
    color: #444;
    line-height: 1.6;
    margin-bottom: 20px;
}
.st-more-info {
    display: inline-block;
    padding: 8px 16px;
    background: #000;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
}
.st-more-info:hover {
    background: #333;
    color: #fff;
}
.st-carousel-nav {
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    pointer-events: none;
}
.st-carousel-nav button {
    pointer-events: auto;
    background: rgba(0,0,0,0.5);
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    margin: 0 10px;
}
.st-carousel-nav button:hover {
    background: rgba(0,0,0,0.8);
}