/* =================================
   GLOBAL PAGE
================================= */

body{
    margin:0;
    font-family:Arial, Helvetica, sans-serif;
    background:#f4f7fb;
    color:#222;
}


/* =================================
   HERO
================================= */

.hero{
    width:100%;
    text-align:center;
    padding-top:0px;
}

.hero img{
    width:100%;
    max-width:1100px;
    height:auto;
}

.hero h1{
    font-size:26px;
    margin:20px 0 8px 0;
}

.hero p{
    font-size:18px;
    color:#444;
}


/* =================================
   MAIN CONTENT
================================= */

.container{
    max-width:1100px;
    margin:40px auto;
    padding:0 20px;
}

.card{
    background:white;
    padding:30px;
    border-radius:14px;
    box-shadow:0 12px 30px rgba(0,0,0,0.08);
    margin-bottom:30px;
    text-align:center;
}

.card h2{
    margin-top:0;
    color:#0077cc;
}

.card p{
    line-height:1.6;
}


/* =================================
   BUTTONS
================================= */

.button{
    display:inline-block;
    padding:14px 28px;
    background-color:#00C853;
    color:white;
    font-weight:bold;
    text-decoration:none;
    border-radius:8px;
    margin-top:15px;
    transition:0.3s;
}

.button:hover{
    background-color:#00A843;
}


/* =================================
   FOOTER
================================= */

.footer{
    background:#0B4F91;
    color:white;
    padding:40px 20px 20px 20px;
}


/* footer width */

.footer-container{
    max-width:1100px;
    margin:0 auto;
}


/* FIRST ROW */

.footer-columns{
    display:flex;
    width:100%;
}


/* left column */

.footer-left{
    text-align:left;
}


/* right column */

.footer-right{
    margin-left:auto;
    text-align:left;
}


/* CONTACT ROW */

.footer-contact{
    text-align:center;
    margin-top:25px;
}


/* headings */

.footer h3{
    margin:0 0 8px 0;
    font-size:18px;
}


/* links */

.footer a{
    display:block;
    color:#CBE6FF;
    text-decoration:none;
    margin-bottom:6px;
    font-size:15px;
}

.footer a:hover{
    text-decoration:underline;
}


/* bottom section */

.footer-bottom{
    text-align:center;
    margin-top:20px;
    font-size:14px;
    color:#CBE6FF;
    line-height:1.2;
}

.footer-bottom img{
    display:block;
    margin:8px auto 0 auto;
    width:160px;
}