.hgs-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.hgs-slides-container {
    max-height: 100%;
    position: relative;
    overflow: hidden;
}

.hgs-slide {
    display: none;
    position: relative;
}

.hgs-slide.active {
    display: block;
}

.hgs-slide img {
    width: 100%;
    height: auto;
}

.hgs-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
}

.hgs-cta {
    display: inline-block;
    margin: 10px;
    padding: 10px 20px;
    background: #0073aa;
    color: #fff;
    text-decoration: none;
}

/* Stili per le frecce */
.hgs-prev-arrow,
.hgs-next-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 24px;
    z-index: 10;
}

.hgs-prev-arrow {
    left: 10px;
}

.hgs-next-arrow {
    right: 10px;
}

.hgs-prev-arrow:hover,
.hgs-next-arrow:hover {
    background: rgba(0, 0, 0, 0.8);
}

/* Stili per i dots */
.hgs-dots {
    text-align: center;
    position: absolute;
    bottom: 20px;
    width: 100%;
    z-index: 10;
}

.hgs-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0 5px;
    background: #bbb;
    border-radius: 50%;
    cursor: pointer;
}

.hgs-dot.active {
    background: #0073aa;
}
.hgs-slide.active {
    display: block;
    opacity: 1;
}