.webinar-banner {
    background-color: #f6f9ff;
    padding: 80px 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Poppins", sans-serif;
}



.banner-content-kw {
    position: absolute;
    min-width: 320px;
    left: 16%;
    top: 50%;
    transform: translateY(-50%);

    @media(max-width:650px) {
        left: 1%;
        top: 27%;
    }
}

.banner-content-kw h1 {
    font-family: Inter;
    font-weight: 500;
    font-size: 42px;
    margin-bottom: 20px;
    color: #000000;
    line-height: normal;
}

.banner-content-kw h1 span {
    font-weight: 500;
}

.banner-content-kw strong {
    color: #0176FF;
}

.banner-content-kw p {
    margin-top: 15px;
    color: #555;
    font-family: Inter;
    font-weight: 500;
    font-size: 17px;
}

.cta-btn-kw {
    display: inline-block;
    background: #0076FF;
    color: #fff;
    margin-top: 20px;
    padding: 16px 34px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 400;
    margin-bottom: 40px;
    font-size: 18px;

    @media(max-width:650px){
     padding:   8px 21px;
    }
}

.cta-btn:hover {
    background-color: #1e2fc4;

}

.banner-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.banner-image picture,
.banner-image img {
    width: 100%;
    max-width: 550px;
    height: auto;
    border-radius: 8px;
}

/* Responsive */
@media (max-width: 768px) {
    .webinar-banner {
        padding: 40px 20px;
        text-align: center;
    }

    .banner-container {
        flex-direction: column;
        align-items: center;
    }

    .banner-content-kw h1 {
        font-size: 28px;
    }

    .banner-content-kw p {
        font-size: 16px;
    }

    .cta-btn {
        font-size: 16px;
        padding: 12px 25px;
    }

    .banner-image img {
        max-width: 100%;
    }
}