*{
}

section{
    margin-bottom:30px;
}

.section-title{
    display:inline-block;
    background:#234f87;
    color:#fff;
    padding:10px 20px;
    font-size:24px;
    margin-bottom:20px;
}

.profile-grid{
    display:grid;
    grid-template-columns:1fr 1fr 180px;
    gap:20px;
}

.profile-grid p{
    margin-bottom:15px;
    font-size:18px;
}

.avatar-box img{
    width:160px;
    height:200px;
    object-fit:cover;
}

.item-block{
    margin-bottom:25px;
}

.item-header{
    display:grid;
    grid-template-columns:1fr 1fr 1fr;
    font-weight:bold;
    margin-bottom:10px;
    font-size:18px;
}

.item-content{
    line-height:1.8;
    font-size:16px;
}

.skill-item{
    margin-bottom:15px;
    line-height:1.8;
}

.summary{
    line-height:1.8;
}

@media print{

    body{
        background:white;
        padding:0;
    }

    .cv-container{
        width:100%;
        min-height:auto;
        padding:20px;
    }

}