.hero-slider {
    width: 100%;
    height: 500px;
    position: relative;
    overflow: hidden;
}

.hero-slide {
    width: 100%;
    height: 500px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    color: #fff;
    padding: 50px;
}

.hero-slide h1 {
    font-size: 36px;
    font-style: normal;
    font-weight: 300;
    line-height: 50px;
    color: white;
    text-align: left;
}

.hero-slide p {
    max-width: 544px;
    text-align: left;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 34px;
    color: white;
    margin: 0;
    line-height: 1.2;
}

.hero-slide ul {
    display: flex;
    list-style: none;
    gap: 24px;
    padding: 0;
    margin: 24px 0 0;
    flex-wrap: wrap;
}
.hero-slide .slide-content p a{
	color: #fff;
}
.cta_section {
    display: inline-block;
    margin: 40px 0 0
}

.cta_section a {
    background-color: #00c65e;
    color: #fff;
    font-weight: 600;
    padding: 12px 35px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    font-size: 16px;
}

.cta_section a:hover {
    text-decoration: none;
    opacity: .95
}

.hero-slide li {
    osition: relative;
    color: #fff;
    margin-bottom: 5px;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 22px;
    display: flex;
    align-items: center;
}

.hero-slide .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.slide-content {
    max-width: 600px;
    color: #fff;
    animation: fadeInUp 0.8s ease-out;
    display: inline-block;
}

/* Stiluri pentru elementele din content */

.slide-content img.smartlease {
    max-width: 200px;
    margin-bottom: 30px;
}

.slide-content h1 {
    margin-bottom: 20px;
}

.slide-content p {
    line-height: 1.6;
}

.slide-content ul {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.slide-content li {
    font-size: 1rem;
    position: relative;
    padding-left: 25px;
}

.slide-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00c853;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Butoane Swiper */

.swiper-button-next,
.swiper-button-prev {
    color: #fff;
    background: rgba(255, 255, 255, 0.2);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 20px;
    font-weight: bold;
}

.swiper-pagination-bullet {
    background: #fff;
    opacity: 0.5;
    width: 10px;
    height: 10px;
}

.swiper-pagination-bullet-active {
    background: #00c853;
    opacity: 1;
    width: 30px;
    border-radius: 5px;
}

/* Animatie */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media screen and (max-width:991px) {
    .hero-slide {
        background-size: cover !important;
        background-position: center !important;
        background-repeat: no-repeat !important;
        height: 100%;
        padding: 20px 30px;
        align-items: center;
        height: auto;
        min-height: 400px;
    }
	.slide-content img.smartlease{
		margin: 0
	}
}
@media (max-width: 768px) {
    .hero-slide .container {
        padding: 0 20px;
    }
    .slide-content ul {
        flex-direction: column;
        gap: 15px;
    }
    .swiper-button-next,
    .swiper-button-prev {
        width: 35px;
        height: 35px;
    }
    .swiper-button-next::after,
    .swiper-button-prev::after {
        font-size: 14px;
    }
    .hero-slide h1 {
        font-size: 24px;
        line-height: 1.3;
    }
    .hero-slide ul {
        margin: 10px 0 0;
		gap: 5px;
    }
    .hero-slide p,
    .hero-slide li {
        font-size: 14px;
        line-height: 1.3;
        margin: 0 0 5px;
    }
    .slider_home .container{
        padding:0 !important;
    }
}