*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    background:#edf2f7;
    font-family:Segoe UI, sans-serif;
    padding:30px 15px;
}

.cv-container{
    max-width:1200px;
    margin:auto;
    display:flex;
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.sidebar{
    width:320px;
    background:#07132d;
    color:#fff;
    padding:35px;
}

.profile-header{
    margin-bottom:40px;
}

.profile-header h1{
    font-size:32px;
    margin-bottom:10px;
}

.profile-header p{
    color:#bfc8dc;
    line-height:1.6;
}

.section{
    margin-bottom:40px;
}

.section h3{
    color:#f0c94d;
    margin-bottom:20px;
    border-left:4px solid #f0c94d;
    padding-left:10px;
    letter-spacing:1px;
}

.section ul{
    list-style:none;
}

.section li{
    margin-bottom:12px;
    color:#d7deed;
}

.section i{
    width:20px;
}

.skills li{
    border-left:2px solid rgba(255,255,255,.15);
    padding-left:12px;
}

.content{
    flex:1;
    padding:40px;
}

.card{
    margin-bottom:45px;
}

.card h2{
    font-size:28px;
    margin-bottom:20px;
    color:#1f2937;
    border-bottom:4px solid #f0c94d;
    display:inline-block;
    padding-bottom:6px;
}

.highlight{
    background:#f8fafc;
    border-left:4px solid #f0c94d;
    padding:20px;
    border-radius:10px;
    line-height:1.8;
}

.job{
    margin-bottom:30px;
    padding-left:20px;
    border-left:3px solid #ececec;
}

.job-head{
    display:flex;
    justify-content:space-between;
    gap:20px;
    flex-wrap:wrap;
}

.job-head h4{
    font-size:22px;
}

.job-head span{
    color:#777;
}

.job p{
    margin-top:10px;
    line-height:1.7;
}

.project{
    margin-bottom:30px;
}

.project h4{
    font-size:22px;
    margin-bottom:10px;
}

.tags{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
    margin-bottom:15px;
}

.tags span,
.strengths span{
    background:#fff7db;
    color:#b78600;
    padding:8px 14px;
    border-radius:20px;
    font-size:14px;
}

.strengths{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
}

.project p{
    margin-top:10px;
    line-height:1.7;
}

a{
    color:#d6a000;
    text-decoration:none;
}

@media (max-width: 992px){

    .cv-container{
        flex-direction:column;
    }

    .sidebar{
        width:100%;
    }

    .content{
        padding:25px;
    }

    .profile-header h1{
        font-size:28px;
    }
}

@media (max-width: 576px){

    .content{
        padding:20px;
    }

    .card h2{
        font-size:22px;
    }

    .job-head h4,
    .project h4{
        font-size:18px;
    }

    .strengths span{
        width:100%;
        text-align:center;
    }
}