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

.anchor {
    float: left;
    padding-right: 4px;
    margin-left: -20px;
}

.skip-to-main-content-link {
    position: absolute;
    left: -9999px;
    z-index: 999;
    padding: 1em;
    background-color: black;
    color: white;
    opacity: 0;
}

.skip-to-main-content-link:focus {
    left: 50%;
    transform: translateX(-50%);
    opacity: 1;
}

h2 .anchor svg {
    visibility: hidden;
}

h2:hover .anchor svg {
    visibility: visible;
}


.summary p {
    margin-bottom: 10px;
}

.summary p:last-child {
    margin-bottom: 0;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding: 10px;
    color: #333;
    background-color: #f4f4f4;
}

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

header h1 {
    font-size: 1.8em;
    color: #333;
}

header p {
    margin: 5px 0;
    font-size: 0.9em;
}

header a {
    color: #0066cc;
    text-decoration: none;
    word-break: break-word;
}

.profile-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin: 10px auto;
    display: block;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.left, .right {
    width: 100%;
}

section {
    margin: 15px 0;
    padding: 15px 25px;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

section h2 {
    font-size: 1.2em;
    color: #333;
    margin-bottom: 10px;
    border-bottom: 2px solid #0066cc;
    padding-bottom: 5px;
}

.job h3 {
    font-size: 1em;
    color: #0066cc;
    margin-top: 10px;
}

.job p {
    font-style: italic;
    color: #666;
    font-size: 0.9em;
}

.list ul {
    list-style-type: disc;
    margin-left: 20px;
}

ul li {
    margin-bottom: 5px;
    font-size: 0.9em;
}

@media (min-width: 768px) {
    .container {
        flex-direction: row;
    }

    .left {
        width: 28%;
    }
    .right {
        width: 68%;
    }
}

@media (min-width: 1024px) {
    body {
        padding: 20px;
    }

    header h1 {
        font-size: 2em;
    }

    section {
        padding: 20px 30px;
    }

    section h2 {
        font-size: 1.5em;
    }

    .job h3 {
        font-size: 1.2em;
    }

    ul li {
        font-size: 1em;
    }
}
