.dhs-container-8fca9300 {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: #f8f9fa;
	display: flex;
}

.dhs-slide-8fca9300 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
}

.dhs-slide-8fca9300.dhs-active-8fca9300 {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.dhs-bg-8fca9300 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.1);
	z-index: -2;
}

.dhs-slide-8fca9300::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.4);
	z-index: -1;
}

.dhs-content-8fca9300 {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    z-index: 3;
}

.dhs-content-inner-8fca9300 {
	max-width: 600px;
}

.dhs-title-8fca9300 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    opacity: 0;
	transform: translateY(30px);
}

.dhs-desc-8fca9300 {
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0;
	transform: translateY(30px);
}

.dhs-button-wrap-8fca9300 {
	opacity: 0;
	transform: translateY(30px);
}

.dhs-button-8fca9300 {
    display: inline-block;
    padding: 12px 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dhs-button-8fca9300:hover {
    opacity: 0.9;
	transform: translateY(-2px);
}

.dhs-nav-8fca9300 {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 10;
}

.dhs-prev-8fca9300,
.dhs-next-8fca9300 {
    background: rgba(255,255,255,0.2);
    border: none;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s;
	padding: 0;
}

.dhs-prev-8fca9300:hover,
.dhs-next-8fca9300:hover {
    background: rgba(255,255,255,0.4);
}

.dhs-dots-8fca9300 {
    display: flex;
    gap: 8px;
}

.dhs-dot-8fca9300 {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dhs-dot-8fca9300.active {
    background: #fff;
    transform: scale(1.3);
}

@media (max-width: 768px) {
    .dhs-title-8fca9300 { font-size: 2rem; }
    .dhs-desc-8fca9300 { font-size: 1rem; }
}