:root {
    --primary-blue: #3983F8;
    --light-blue: #D7E6FE;
    --dark-text: #1A1A1A;
    --grey-text: #4A5568;
    --white: #FFFFFF;
    --bg-light: #F8FAFC;
}
body {
    font-family: 'Nunito', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #FFF;
    padding-bottom: 130px;
}
a{
    text-decoration: none;
}
#header {
    width: 100%;
    max-width:800px;
    box-sizing: border-box;
    padding: 20px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin: 0px auto;
}
.container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}
.download-btn{
    height: 25px;
    width:100px;
    padding: 10px 15px;
    text-decoration:none;
    background-color: #3983F8;
    border-radius: 10px;
    box-shadow: 0px 5px #D7E6FE;
    color: #FFF;
    font-size: 16px;
    font-weight: 900;
    text-align: center;
    display:inline-flex;
    justify-content: center;
    align-items: center;
}
.footer{
    padding:24px 16px;
    box-sizing: border-box;
}
.footer__inner{
    max-width:800px;
    width:100%;
    margin:0 auto;
    display:grid;
    text-align: center;
    grid-template-columns:repeat(4, 1fr);
    gap:0px;
}
.footer__title{
    margin:0 0 10px;
    font-size:16px;
    font-weight:900;
    color: #4A6897
}
.footer__col{
    display:flex;
    flex-direction:column;
    gap:10px;
}
.footer__link{
    font-size:16px;
    font-weight: 900;
    color: #8FA4C3
}
.footer__bottom{
    width:100%;
    max-width:900px;
    margin:20px auto 0;
    text-align: center;
    font-size:16px;
    font-weight:800;
    color: #8FA4C3
}
.bottom-banner{
    position: fixed;
    left: 50%;
    bottom: 0px;
    transform: translateX(-50%);
    width: 100%;
    max-width: 800px;
    background: #FFFFFF;
    border-top: 1px solid rgba(0,0,0,0.05);
    padding: 15px 25px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    z-index: 9999;
}
.bottom-banner__text{
    font-size: 20px;
    font-weight: 900;
    color: #1A1A1A;
    margin: 0;
}
.bottom-banner__button{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #3983F8;
    color: #FFFFFF;
    margin: 0 auto;
    font-size: 16px;
    font-weight: 900;
    padding: 14px 18px;
    border-radius: 12px;
    box-shadow: 0px 5px #D7E6FE;
    white-space: nowrap;
}
@media (max-width: 800px){
    h1{
        font-size: 27px !important
    }
    h2{
        font-size: 24px !important
    }
    .footer__inner{
        grid-template-columns:repeat(1, 1fr);
    }
    .footer__col{
        padding-top:30px;
    }
    .bottom-banner{
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }
    .bottom-banner__text{
        font-size: 18px;
    }
    .bottom-banner__button{
        width: 100%;
        box-sizing: border-box;
    }
}