* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: #ffffff;
    color: #1a1a1a;
    overflow-x: hidden;
}

.slider-container {
    width: 100%;
    margin: 0 auto;
    padding: 60px 0;
}

/* Header Section */
.header-section {
    text-align: center;
    margin-bottom: 60px;
}

.subtitle {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #666;
    margin-bottom: 16px;
    font-weight: 600;
}

.main-title {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
    line-height: 1.2;
}

.description {
    font-size: 18px;
    color: #666;
    margin: 0 auto;
    line-height: 1.6;
}

/* Slider Wrapper */
.slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    padding: 40px 0;
    overflow: hidden;
}

.slider-track {
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 20px;
    width: 100%;
}

/* Slide Styles */
.slide {
    flex-shrink: 0;
    width: 260px;
    height: 385px;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.4;
    transform: scale(1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: relative;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

.slide.active {
    opacity: 1;
    transform: scale(1.05);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    z-index: 10;
}

.slide:not(.active):hover {
    opacity: 0.6;
    transform: scale(1.02);
}

.slide.active:hover {
    transform: scale(1.02);
}

/* Navigation Buttons */
.nav-btn {
    position: static;
    background: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 20;
    color: #1a1a1a;
}

.nav-btn:hover {
    background: #1a1a1a;
    border-color: #1a1a1a;
    color: #ffffff;
    transform: scale(1.1);
}

/* CTA Section */
.cta-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    color: #ffffff;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(30, 58, 138, 0.3);
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(30, 58, 138, 0.4);
}

.cta-btn svg {
    transition: transform 0.3s ease;
}

.cta-btn:hover svg {
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .slider-container {
        padding: 40px 0;
    }
    
    .header-section {
        margin-bottom: 40px;
    }
    
    .main-title {
        font-size: 36px;
    }
    
    .description {
        font-size: 16px;
    }
    
    .slider-wrapper {
        padding: 20px 0;
        width: 100%;
    }
    
    .slider-track {
        gap: 15px;
        padding: 0;
        width: 100%;
    }
    
    .slide {
        width: 75%;
        max-width: 300px;
        height: 445px;
        margin: 0;
    }
    
    .slide.active {
        transform: scale(1);
    }
    
    .slide:not(.active) {
        opacity: 0.2;
        transform: scale(0.75);
    }
    
    .nav-btn {
        width: 40px;
        height: 40px;
    }
    
    .prev-btn {
        left: 5px;
    }
    
    .next-btn {
        right: 5px;
    }
    
    .cta-btn {
        padding: 16px 32px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 28px;
    }
    
    .slide {
        width: 220px;
        height: 300px;
    }
}
