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

body{
    background: #e5e5e5;
    display: flex;
    justify-content: center;
    padding: 30px;
}

.cv-container{
    width: 900px;
    background: white;
    display: flex;
    border: 3px solid #0f5c7a;
}

/* IZQUIERDA */

.left{
    width: 30%;
    background: #2ab7b4;
    padding: 20px;
    color: white;
}

.perfil{
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.perfil img{
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 5px solid white;
    object-fit: cover;
}

.box{
    margin-bottom: 25px;
    border-top: 3px solid white;
    padding-top: 10px;
}

.box h2{
    margin-bottom: 15px;
    font-size: 20px;
}

.box p,
.box li{
    margin-bottom: 8px;
    font-size: 14px;
}

.box ul{
    padding-left: 20px;
}

.barra{
    width: 100%;
    height: 10px;
    background: white;
    border-radius: 20px;
    margin-bottom: 15px;
}

.nivel{
    width: 100%;
    height: 10px;
    background: #0f5c7a;
    border-radius: 20px;
}

.ingles{
    width: 60%;
}

/* DERECHA */

.right{
    width: 70%;
    padding: 25px;
}

.header{
    background: linear-gradient(to right, #0f5c7a, #1d88b3);
    color: white;
    padding: 25px;
    margin-bottom: 25px;
}

.header h1{
    font-size: 40px;
}

.header h3{
    margin-top: 10px;
    font-weight: normal;
}

.section{
    margin-bottom: 25px;
    border: 2px solid orange;
    padding: 15px;
    border-radius: 8px;
}

.section h2{
    color: #0f5c7a;
    margin-bottom: 15px;
    border-bottom: 3px solid #2ab7b4;
    padding-bottom: 5px;
}

.item{
    margin-bottom: 20px;
}

.item h3{
    color: #0f5c7a;
    margin-bottom: 5px;
}

.item span{
    font-size: 14px;
    color: gray;
}

.item p,
.item li{
    margin-top: 5px;
    font-size: 14px;
}

.item ul{
    padding-left: 20px;
}