*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    background:linear-gradient(135deg,#dff6ff,#ffffff);
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:20px;
}

.container{
    width:100%;
    max-width:700px;
}

.card{
    background:#fff;
    border-radius:20px;
    padding:40px;
    box-shadow:0 15px 40px rgba(0,0,0,.12);
    animation:fadeIn .4s ease;
}

.logo{
    font-size:50px;
    text-align:center;
}

h1{
    text-align:center;
    color:#0f766e;
    margin-top:10px;
}

.subtitle{
    text-align:center;
    color:#666;
    margin-top:8px;
    margin-bottom:25px;
}

.progress-container{
    width:100%;
    height:10px;
    background:#ececec;
    border-radius:20px;
    overflow:hidden;
    margin-bottom:35px;
}

.progress-bar{
    height:100%;
    width:0%;
    background:#14b8a6;
    transition:.4s;
}

.question-count{
    color:#14b8a6;
    font-weight:600;
    margin-bottom:15px;
}

h2{
    font-size:24px;
    margin-bottom:25px;
    color:#222;
}

.options{
    display:flex;
    flex-direction:column;
    gap:15px;
}

.option-btn{
    border:none;
    padding:16px;
    border-radius:12px;
    background:#f5f5f5;
    cursor:pointer;
    font-size:16px;
    transition:.25s;
}

.option-btn:hover{
    background:#14b8a6;
    color:white;
    transform:translateY(-2px);
}

.result{
    text-align:center;
}

.score{
    font-size:65px;
    font-weight:bold;
    color:#14b8a6;
    margin:20px 0;
}

.result p{
    line-height:1.7;
    color:#555;
}

.cta{
    margin-top:30px;
    background:#f7fdfd;
    border-radius:15px;
    padding:25px;
}

.cta h3{
    color:#0f766e;
    margin-bottom:15px;
}

.cta ul{
    text-align:left;
    margin:15px auto;
    display:inline-block;
}

.cta li{
    margin-bottom:10px;
}

.download-btn{
    display:inline-block;
    margin-top:20px;
    background:#14b8a6;
    color:white;
    padding:14px 30px;
    text-decoration:none;
    border-radius:10px;
    transition:.3s;
}

.download-btn:hover{
    background:#0f766e;
}

.restart-btn{
    margin-top:30px;
    padding:14px 30px;
    border:none;
    background:#444;
    color:white;
    border-radius:10px;
    cursor:pointer;
}

.restart-btn:hover{
    background:#222;
}

@keyframes fadeIn{
    from{
        opacity:0;
        transform:translateY(20px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

@media(max-width:600px){

.card{
    padding:25px;
}

h2{
    font-size:20px;
}

.score{
    font-size:50px;
}

.option-btn{
    font-size:15px;
}

}

.risk-level{
    color:#fff;
    padding:12px;
    border-radius:10px;
    font-size:20px;
    font-weight:600;
    text-align:center;
    margin:20px 0;
}