  /* Reset default margins and paddings */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        /* Mobile-only bottom section */
        .mobile-bottom-section {
            /* Hide by default */
            display: none;
        }

        /* Show only on mobile devices */
        @media screen and (max-width: 768px) {
            .mobile-bottom-section {
				text-align:center;
                display: block;
               position: fixed;
                bottom: 0;
                left: 0;
                width: 100%;

               z-index:50;
            }

        .btn-common-quote{
			background: #f89c30;
    border-radius: 50px;
    color: white;
    display: inline-block;
    clear: both;
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-align: center;
    border: 1px solid #f89c30;
    font-family: "AllianzSans";
    letter-spacing: 1px;
                font-size: 1.5rem;
        padding: 5px 25px 7px;
            }
        }