.hs-ea8787fc-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    height: 600px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    font-family: 'Montserrat', 'Helvetica', 'Arial', sans-serif;
}

.hs-ea8787fc-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

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

.hs-ea8787fc-slide.hs-ea8787fc-active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.hs-ea8787fc-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: linear-gradient(135deg, rgba(16, 24, 48, 0.85) 0%, rgba(16, 24, 48, 0.4) 100%);
}

.hs-ea8787fc-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    text-align: center;
    padding: 20px 40px;
    color: #fff;
    transform: translateY(30px);
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.hs-ea8787fc-slide.hs-ea8787fc-active .hs-ea8787fc-content {
    transform: translateY(0);
}

.hs-ea8787fc-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0,0,0,0.35);
}

.hs-ea8787fc-desc {
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.6;
    margin-bottom: 2rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
    opacity: 0.9;
}

.hs-ea8787fc-btn {
    display: inline-block;
    padding: 15px 35px;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.4);
}

.hs-ea8787fc-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 152, 0, 0.6);
}

/* Navigation Controls */
.hs-ea8787fc-arrows {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 10;
    pointer-events: none;
}

.hs-ea8787fc-arrow {
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
    transition: background 0.3s ease, transform 0.3s ease;
    pointer-events: auto;
    line-height: 1;
}

.hs-ea8787fc-arrow:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

/* Dots Indicator */
.hs-ea8787fc-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.hs-ea8787fc-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid white;
    background: transparent;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

.hs-ea8787fc-dot.hs-ea8787fc-active {
    background: white;
    transform: scale(1.3);
}

@media (max-width: 768px) {
    .hs-ea8787fc-container {
        height: 500px;
    }
    .hs-ea8787fc-content {
        padding: 15px 25px;
    }
    .hs-ea8787fc-arrows {
        display: none;
    }
}
