body{
    font-family: Arial, sans-serif;
    margin:0;
    padding:0;
    background:#f0f0f0;
}

.container{
    max-width:900px;
    margin:auto;
    background:white;
    padding:20px;
    box-shadow:0 0 10px rgba(0,0,0,0.1);
}

/* HEADER */

.header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    border-bottom:2px solid #ddd;
    padding-bottom:15px;
}

.nama h1{
    margin:0;
    color:#2c3e50;
}

.nama p{
    margin:5px 0;
    color:#777;
}

.foto img{
    width:120px;
    height:150px;
    object-fit:cover;
    border-radius:10px;
}

/* SECTION */

.section{
    margin-top:20px;
}

.section h2{
    border-bottom:2px solid #2c3e50;
    padding-bottom:5px;
    color:#2c3e50;
}

table{
    width:100%;
    margin-top:10px;
}

table td{
    padding:5px;
}

ul{
    margin-top:10px;
    padding-left:20px;
}

/* RESPONSIVE UNTUK HP */

@media screen and (max-width:600px){

.header{
    flex-direction:column;
    text-align:center;
}

.foto img{
    margin-top:10px;
}

.container{
    padding:15px;
}

.nama h1{
    font-size:22px;
}

.section h2{
    font-size:18px;
}

}