.custom-slider-wrapper {
    position: relative;
    max-width: 100%;
    overflow: hidden;
}

.swiper-slide {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.slide-content {
    display: flex;
    width: 100%;
}

.slide-image {
    width: 50%;
    height: 300px;
    background-size: cover;
    background-position: center;
    border-radius: 10px 0 0 10px;
}

.slide-text {
    width: 50%;
    padding: 20px;
}

.slide-text h4 {
    font-size: 24px;
    color: #062a5f;
}

.slide-text p {
    font-size: 16px;
    color: #444;
}

.read-more-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background: #f56429;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.swiper-button-next,
.swiper-button-prev {
    color: #062a5f;
}
