/* Main slider container */
.ace-slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.ace-slider {
    position: relative;
    width: 100%;
    height: 800px; /* Adjust based on your needs */
}

.ace-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1s ease;
}

.ace-slide.active {
    opacity: 1;
}

/* Text layers */
.ace-layer {
    position: absolute;
}

.title-layer {
    font-size: 58px;
    line-height: 74px;
    top: 230px;
    left: 50px;
    width: 610px;
}

.description-layer {
    font-size: 18px;
    line-height: 28px;
    top: 400px;
    left: 50px;
    width: 560px;
}

/* Buttons */
.ace-button {
    display: inline-block;
    padding: 15px 80px;
    color: #201e25;
    font-weight: 700;
    text-decoration: none;
    border-radius: 4px;
    position: absolute;
    top: 522px;
    left: 50px;
    transition: all 0.3s ease;
}

.ace-button:hover {
    color: #fff;
    background-color: #201e25 !important;
}

.ace-button.secondary {
    background: transparent;
    padding: 15px 50px;
    left: 320px;
}

/* Decorative elements */
.ace-decoration {
    position: absolute;
}

.circle-bg {
    right: -1256px;
    top: -370px;
    width: 1433px;
    height: 1433px;
    z-index: 6;
}

.person-image {
    right: -6px;
    top: 72px;
    width: 720px;
    height: 571px;
    z-index: 15;
    transform: rotate(-2deg);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .title-layer {
        font-size: 58px;
        line-height: 74px;
        left: 30px;
    }
    
    .description-layer {
        left: 30px;
    }
    
    .circle-bg {
        right: -1073px;
        top: -440px;
        width: 1251px;
        height: 1251px;
    }
    
    .person-image {
        right: 47px;
        top: 98px;
        width: 577px;
        height: 457px;
    }
}

/* Add more breakpoints as needed */