*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{

    font-family:Arial,Helvetica,sans-serif;

    height:100vh;

    overflow:hidden;

    display:flex;

    justify-content:center;

    align-items:center;

    background:linear-gradient(135deg,#f5f7fa,#dce6f4);

    color:#333;

}

.card{

    width:min(92vw,500px);

    background:#fff;

    border-radius:18px;

    padding:28px;

    text-align:center;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

}

.logo{

    width:150px;

    margin-bottom:15px;

}

.icon{

    font-size:42px;

    margin-bottom:12px;

}

h1{

    color:#00BCD4;

    font-size:2rem;

    margin-bottom:8px;

}

.subtitle{

    color:#666;

    margin-bottom:15px;

}

.badge{

    display:inline-block;

    background:#00BCD4;

    color:#fff;

    padding:8px 18px;

    border-radius:30px;

    font-size:13px;

    font-weight:bold;

    margin-bottom:20px;

}

.divider{

    height:2px;

    background:linear-gradient(to right,transparent,#00BCD4,transparent);

    margin:20px 0;

}

.description{

    color:#666;

    line-height:1.6;

    font-size:15px;

}

.contact{

    margin-top:22px;

}

.contact p{

    margin-bottom:8px;

    color:#555;

}

.contact a{

    color:#00BCD4;

    font-weight:bold;

    text-decoration:none;

}

.contact a:hover{

    color:#0097A7;

}

.social{

    margin-top:22px;

    display:flex;

    justify-content:center;

    gap:15px;

}

.social a{

    width:45px;

    height:45px;

    border-radius:50%;

    background:#f3f3f3;

    display:flex;

    justify-content:center;

    align-items:center;

    color:#00BCD4;

    font-size:20px;

    text-decoration:none;

    transition:.3s;

}

.social a:hover{

    background:#00BCD4;

    color:#fff;

}

@media(max-height:700px){

    .card{

        padding:22px;

    }

    .logo{

        width:120px;

    }

    .icon{

        font-size:34px;

    }

    h1{

        font-size:1.7rem;

    }

    .description{

        font-size:14px;

    }

}