.slider-container {
    position: relative;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

.slider-track {
    display: flex;
    transition: transform 0.3s ease-in-out;
}

.slider-item {
    width: 100%;
    box-sizing: border-box;
}

.slider-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
.banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    background-color: #fff;
}

.banner-text {
    font-size: 18px;
    color: #333;
}

.banner-cta {
    background-color: #f19537;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 16px;
}

.banner-cta:hover {
    background-color: #d84315;
}
