*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:40px 20px;
    background:
        radial-gradient(circle at top right,#dfefff 0%,transparent 35%),
        radial-gradient(circle at bottom left,#eaf4ff 0%,transparent 40%),
        linear-gradient(180deg,#ffffff,#eef6ff);
}

body::before{
    content:"";
    position:fixed;
    left:-10%;
    right:-10%;
    bottom:-140px;
    height:320px;
    background:
        radial-gradient(circle at 25% 20%,rgba(48,133,255,.18),transparent 45%),
        radial-gradient(circle at 75% 20%,rgba(0,120,255,.12),transparent 45%);
    border-radius:50%;
    z-index:-1;
}

.container{
    width:100%;
    max-width:430px;
    background:#fff;
    border-radius:32px;
    padding:22px 24px 30px;
    text-align:center;
    box-shadow:0 15px 45px rgba(0,60,120,.08);
}

.logo{
    width:430px;
    max-width:100%;
    display:block;
    margin:0 auto -12px;
}

.subtitle{
    text-align:center;
    color:#5d6f86;
    font-size:13px;
    font-weight:600;
    letter-spacing:.8px;
    line-height:1.3;
    margin:12px 0 16px;
}

.card{
    display:flex;
    align-items:center;
    gap:18px;
    min-height:92px;
    padding:18px;
    margin-bottom:16px;
    text-decoration:none;
    color:#222;
    background:#fff;
    border:1px solid #edf3fb;
    border-radius:22px;
    box-shadow:0 8px 20px rgba(13,110,253,.08);
    transition:.35s;
    text-align:left;
}

.card:hover{
    transform:translateY(-5px);
    box-shadow:0 18px 35px rgba(13,110,253,.15);
}

.icon{
    width:65px;
    height:65px;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#fff;
    font-size:28px;
    flex-shrink:0;
    box-shadow:0 8px 18px rgba(0,0,0,.18);
}

/* Icon Colors */

.blue{
    background:linear-gradient(135deg,#2F80ED,#1C5FD4);
}

.cyan{
    background:linear-gradient(135deg,#28C7D9,#18A8C8);
}

.order-icon{
    background:linear-gradient(135deg,#FF9A3C,#FF6B3D);
}

.green{
    background:linear-gradient(135deg,#37D85C,#20B954);
}

.navy{
    background:linear-gradient(135deg,#2457D6,#163F9F);
}
.text{
    flex:1;
}

.text h3{
    color:#123b70;
    font-size:19px;
    font-weight:600;
    margin-bottom:4px;
}

.text span{
    color:#6f7b8a;
    font-size:14px;
    line-height:1.5;
}

.arrow{
    width:38px;
    height:38px;
    display:flex;
    justify-content:center;
    align-items:center;
    border-radius:50%;
    background:#f3f8ff;
    color:#1976D2;
    font-size:18px;
    flex-shrink:0;
    transition:.3s;
}

.card:hover .arrow{
    background:#1976D2;
    color:#fff;
}

.footer{
    margin-top:18px;
    text-align:center;
    color:#1976D2;
    font-size:15px;
    font-weight:600;
}

.footer a{
    color:#1976D2;
    text-decoration:none;
}

.footer a:hover{
    text-decoration:underline;
}

@media (max-width:480px){

    body{
        padding:20px 15px;
    }

    .container{
        max-width:100%;
        padding:20px;
        border-radius:26px;
    }

    .logo{
        width:260px;
    }

    .subtitle{
        font-size:12px;
        margin:0 0 6px;
    }

    .card{
        min-height:82px;
        padding:15px;
        gap:14px;
        border-radius:18px;
    }

    .icon{
        width:56px;
        height:56px;
        font-size:23px;
    }

    .text h3{
        font-size:17px;
    }

    .text span{
        font-size:13px;
    }

    .arrow{
        width:34px;
        height:34px;
        font-size:16px;
    }
}