.carousel-container {
    overflow: hidden;
    position: relative;
    width: 100%;
    background-color: #c7c7c7e0;
    padding: 10px 0;
}

.carousel-track {
    display: flex;
    white-space: nowrap;
    animation: scroll 30s linear infinite;
}

.carousel-content {
    display: flex;
    gap: 50px;
}

.text-item {
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    color: #000000;
    font-weight: 600;
    padding: 10px 20px;
    background-color: #fff;
    border-radius: 25px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
    text-decoration: none;
    display: inline-block;
    transition: none;
}

.text-item a {
    color: #000000;
    text-decoration: none;
    display: block;
    height: 100%;
    width: 100%;
}

.text-item:hover,
.text-item:focus {
    color: #000000;
    background-color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}