*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body, html{
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* Prevent accidental horizontal scroll */
}

.banner-wrapper {
    position: relative;
}

.for-desktop-view {
    position: absolute;
    top: 24%;
    left: 60%;
    right: 0;
    bottom: 0;
}

picture {
    width: 100%;
    height: 100%;
}

.banner-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: cover;
}



.box {
    background-color: #fff;
    border: 1px solid #1f95d1;
    border-radius: 10px;
    padding: 40px 10px;
    text-align: center;
    margin: 10px 10px;
}

.box a {
    text-decoration: none;
    color: #1f95d1;
    text-transform: uppercase;
    font-weight: 500;
}


@media only screen and (max-width: 767px) {
    .for-desktop-view {
        position: absolute;
        top: 38%;
        left: 50%;
        right: 0;
        bottom: 0;
        width: 40%;
        transform: translateX(-50%);
    }

    .box {
        margin: 10px 0;
        padding: 15px 5px;
    }

    .box a{
        font-size: 14px;
    }
}
