/* ======================
   Version 1.3
   ====================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #f5f5f5;
    color: #222;
    line-height: 1.7;

    max-width: 850px;
    margin: auto;

    padding: 40px 20px;
}

/* ---------- Header ---------- */

header {
    text-align: center;
    margin-bottom: 50px;
}

header h1 {
    font-size: 2.7rem;
}

/* ---------- Hero ---------- */

#hero {
    text-align: center;
}

#hero img {
    width: 180px;
    height: 180px;

    object-fit: cover;

    border-radius: 50%;

    border: 4px solid #444;

    margin-bottom: 20px;
}

#hero p {
    max-width: 600px;
    margin: auto;
}

/* ---------- Sections ---------- */

section {
    margin: 45px 0;
}

section h2 {
    margin-bottom: 15px;

    color: #333;
}

/* ---------- Lists ---------- */

ul {
    margin-left: 25px;
}

li {
    margin: 8px 0;
}

/* ---------- Links ---------- */

a {
    color: #1565c0;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* ---------- Quote ---------- */

blockquote {
    font-style: italic;
    color: #444;

    border-left: 4px solid #888;

    padding-left: 15px;

    margin-bottom: 10px;
}

/* ---------- Horizontal Rule ---------- */

hr {
    border: none;

    border-top: 1px solid #ddd;

    margin: 40px 0;
}

/* ---------- Footer ---------- */

footer {
    text-align: center;

    color: #666;

    font-size: 0.9rem;

    margin-top: 50px;
}

/* ---------- For CV Section ---------- */

#cv a {
    font-weight: bold;
    text-decoration: none;
}

#cv a:hover {
    text-decoration: underline;
}

.cv-disclaimer {
    margin-top: 20px;
    font-size: 0.9rem;
    color: #666;
}