/* ===========================
   MyOrbis
   =========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    background:#F7F9FC;
    color:#23313F;
    line-height:1.6;
}

/* ===========================
   Header
   =========================== */

header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:25px 10%;
    background:white;
    box-shadow:0 2px 10px rgba(0,0,0,.05);
    position:sticky;
    top:0;
    z-index:100;
}

.logo{
    width:220px;
}

nav{
    display:flex;
    gap:35px;
}

nav a{
    text-decoration:none;
    color:#0B4D91;
    font-weight:bold;
    transition:.25s;
}

nav a:hover{
    color:#48B357;
}

/* ===========================
   Hero
   =========================== */

.hero{
    padding:70px 20px;
    text-align:center;
}

.hero-image{
    width:100%;
    max-width:1150px;
    display:block;
    margin:auto;
    transition:.4s;
}

.hero-image:hover{
    transform:scale(1.02);
}

.hero h1{
    margin-top:15px;
    font-size:3rem;
    color:#0B4D91;
}

.hero p{
    max-width:760px;
    margin:25px auto;
    font-size:1.2rem;
    color:#666;
}

/* ===========================
   Apps
   =========================== */

.apps{
    width:90%;
    max-width:1200px;
    margin:80px auto;
}

.apps h2{
    text-align:center;
    font-size:2.2rem;
    color:#0B4D91;
    margin-bottom:45px;
}

.card{
    background:white;
    border-radius:22px;
    padding:45px;
    text-align:center;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
    transition:.3s;
}

.card:hover{
    transform:translateY(-6px);
}

.card img{
    width:280px;
    margin-bottom:30px;
}

.card h3{
    font-size:2rem;
    margin-bottom:20px;
    color:#48B357;
}

.card p{
    color:#666;
    max-width:600px;
    margin:auto;
    margin-bottom:35px;
}

.buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.btn{
    background:#48B357;
    color:white;
    text-decoration:none;
    padding:16px 36px;
    border-radius:50px;
    font-weight:bold;
    transition:.25s;
}

.btn:hover{
    background:#3d994b;
}

.secondary{
    background:#0B4D91;
}

.secondary:hover{
    background:#08386b;
}

/* ===========================
   Privacy / Support
   =========================== */

.small-hero{
    padding:70px 20px;
    text-align:center;
}

.small-hero h1{
    color:#0B4D91;
    font-size:3rem;
    font-weight:bold;
    margin-bottom:12px;
}

.small-hero p{
    color:#666;
    font-size:1.2rem;
}

.legal{
    width:90%;
    max-width:900px;
    margin:40px auto 80px;
    background:white;
    padding:50px;
    border-radius:22px;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
}

.legal h2{
    color:#0B4D91;
    margin-top:35px;
    margin-bottom:15px;
    font-size:2rem;
}

.legal p{
    margin-bottom:18px;
    color:#555;
    font-size:1.05rem;
}

.legal ul{
    margin-left:25px;
    margin-bottom:20px;
}

.legal li{
    margin-bottom:10px;
}

.legal a{
    color:#0B4D91;
    text-decoration:none;
    font-weight:bold;
}

.legal a:hover{
    color:#48B357;
}

/* ===========================
   Footer
   =========================== */

footer{
    margin-top:80px;
    padding:40px;
    background:white;
    text-align:center;
    box-shadow:0 -2px 10px rgba(0,0,0,.05);
}

footer p{
    margin-bottom:18px;
    color:#777;
}

footer div{
    display:flex;
    justify-content:center;
    gap:30px;
    flex-wrap:wrap;
}

footer a{
    color:#0B4D91;
    text-decoration:none;
    font-weight:bold;
}

footer a:hover{
    color:#48B357;
}

/* ===========================
   Responsive
   =========================== */

@media (max-width:900px){

    header{
        flex-direction:column;
        gap:25px;
    }

    .logo{
        width:180px;
    }

    nav{
        gap:20px;
        flex-wrap:wrap;
        justify-content:center;
    }

    .hero{
        padding:50px 20px;
    }

    .hero h1{
        font-size:2.2rem;
    }

    .hero-image{
        max-width:100%;
    }

    .card{
        padding:30px;
    }

    .card img{
        width:220px;
    }

    .small-hero{
        padding:50px 20px;
    }

    .small-hero h1{
        font-size:2.3rem;
    }

    .legal{
        padding:30px;
    }

    .legal h2{
        font-size:1.6rem;
    }
}