body{
    font-family: Arial, Helvetica, sans-serif;
    max-width: 900px;
    margin: auto;
    padding: 20px;
    line-height: 1.6;
    color: #222;
}

nav{
    background:#0b7d7d;
    padding:15px;
    display:flex;
    justify-content:center;
    gap:30px;
}

nav a{
    color:white;
    text-decoration:none;
    font-weight:bold;
}

nav a:hover{
    text-decoration:underline;
}

/* FIXED HEADER (no duplicate, proper alignment) */
header{
    display:flex;
    align-items:flex-start;
    gap:30px;
    margin-top:30px;
}

/* IMAGE */
header img{
    width:140px;
    height:140px;
    border-radius:50%;
    object-fit:cover;
}

/* BUTTONS */
.button{
    background:#0b7d7d;
    color:white;
    padding:8px 14px;
    border-radius:6px;
    text-decoration:none;
    font-weight:bold;
    display:inline-block;
    margin-top:8px;
    margin-right:10px;
}

.button:hover{
    background:#095c5c;
}

/* FORCE BUTTONS INLINE EVEN WITH CURRENT HTML */
p {
    margin-bottom: 5px;
}

p .button {
    display: inline-block;
}

header div > .button {
    display: inline-block;
    margin-left: 10px;
}

/* HEADINGS */
h1{
    margin-bottom:5px;
}

h2{
    color:#0b7d7d;
    border-bottom:2px solid #0b7d7d;
    padding-bottom:5px;
}

/* LIST */
ul{
    padding-left:20px;
}

/* FOOTER */
footer{
    margin-top:60px;
    text-align:center;
    color:#0b7d7d;
}
