* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

.banner {
    display: flex;
    align-items: center;
    width: 100%;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
}

.banner-image {
    flex: 1;
    height: 100%;
    position: relative;
    clip-path: polygon(0 0, 75% 0, 100% 100%, 0 100%);
    box-shadow: -10px 0px 20px rgba(0, 0, 0, 0.3);
}

.banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-content {
    flex: 1;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.banner-content h2 {
    font-size: 28px;
    color: #222;
    margin-bottom: 10px;
}

.banner-content p {
    font-size: 18px;
    color: #555;
    margin-bottom: 20px;
}

.cta-btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: #007BFF;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
    font-size: 16px;
    text-align: center;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
}

.cta-btn:hover {
    background-color: #0056b3;
}

@media (max-width: 768px) {
    .banner {
        flex-direction: column;
        height: auto;
        box-shadow: none;
    }

    .banner-image {
        width: 100%;
        clip-path: none;
        height: 250px;
        box-shadow: none;
    }

    .banner-content {
        width: 100%;
        padding: 30px;
        text-align: center;
        box-shadow: none;
    }
}