.custom-hero-slider {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    font-family: inherit;
}

.hero-slides-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10%;
}

.hero-slide-content {
    position: relative;
    z-index: 3;
    color: #fff;
    text-align: center;
    max-width: 800px;
}

.hero-slide-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.hero-slide-description {
    font-size: 20px;
    margin-bottom: 30px;
    color: #eee;
}

.hero-slide-cta {
    display: inline-block;
    padding: 15px 30px;
    background-color: #ffcc00;
    color: #000;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.hero-slide-cta:hover {
    background-color: #e6b800;
}

.hero-slide-image {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    max-width: 400px;
}

.hero-slide-image img {
    max-width: 100%;
    height: auto;
    display: block;
}

.hero-slider-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.hero-slider-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.hero-dot {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    margin: 0;
    outline: none;
    flex-shrink: 0;
    line-height: 0;
}

.hero-dot.active {
    background: #fff;
    transform: scale(1.2);
}

.hero-dot:hover {
    background: rgba(255, 255, 255, 0.6);
}

@media (max-width: 768px) {
    .custom-hero-slider {
        height: 400px;
    }
    .hero-slide-title {
        font-size: 32px;
    }
    .hero-slide-description {
        font-size: 16px;
    }
    .hero-slide-image {
        display: none;
    }
}
