.container-carousel-wrapper {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.container-carousel {
    display: flex;
    transition: transform 0.4s ease;
}

.carousel-item {
    flex: 0 0 auto;
}

.carousel-item-content {
    background: #fff;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.carousel-item-image {
    width: 100%;
    overflow: hidden;
}

.carousel-item-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.carousel-item-content:hover .carousel-item-image img {
    transform: scale(1.05);
}

.carousel-item-text {
    flex: 1;
}

.carousel-item-title {
    margin: 0 0 10px;
    font-size: 20px;
    font-weight: 600;
}

.carousel-item-description {
    margin: 0 0 15px;
    color: #666;
    line-height: 1.6;
}

.carousel-item-link {
    display: inline-block;
    padding: 8px 20px;
    background: #0073aa;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.carousel-item-link:hover {
    background: #005a87;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s ease;
}

.carousel-arrow:hover {
    background: rgba(0, 0, 0, 0.8);
}

.carousel-prev {
    left: 10px;
}

.carousel-next {
    right: 10px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: background 0.3s ease;
}

.carousel-dot.active {
    background: #0073aa;
}