.touch-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}
.slider-container {
    display: flex;
    transition: transform 0.5s ease;
}
.slide {
    min-width: 100%;
    position: relative;
}
.slide img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}
.slide-content {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: white;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px;
}
.read-more {
    color: #ff6200;
    text-decoration: none;
}
.slider-nav {
    text-align: center;
    margin-top: 10px;
}
.dot {
    height: 10px;
    width: 10px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    margin: 0 5px;
    cursor: pointer;
}
.dot.active {
    background-color: #ff6200;
}