html, body {
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    margin: 0;
    padding: 0;
}

main {
    margin-left: 3%;
    padding-bottom: 120px;
}

header, footer {
    background: #0000ff;
    color: #e0e0e0;
    padding: 24px 40px;
    width: 100%;
}

header {
    font-size: 20px;
    letter-spacing: 1px;
}

hr {
    border: none;
    border-top: 1px solid #09ff00;
    margin: 24px 0;
}

.sectionTitle {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
}

.resumeBlock {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 24px 0 8px;
}

.avatar {
    width: 120px;
    height: 120px;
    border-radius: 100%;
    border: 3px solid #0000ff;
    object-fit: cover;
}

.resumeName {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 1px;
}

.resumeProfession {
    font-size: 16px;
    color: #555;
    margin-top: 6px;
}

.aboutText {
    font-family: 'Arial Narrow Bold', sans-serif;
    font-size: 15px;
    line-height: 1.8;
    max-width: 700px;
    margin-bottom: 12px;
}

.list {
    border-radius: 100%;
    padding: 16px 24px;
    padding-left: 40px;
    margin-bottom: 10px;
    line-height: 2;
}

.contactList {
    list-style: none;
    padding: 0;
    line-height: 2.2;
}

.link {
    color: #4f8ef7;
    text-decoration: none;
    display: inline-block;
    margin: 2px 0;
}

.link:hover {
    text-decoration: underline;
}

.tableWrapper {
    width: 95%;
    margin-bottom: 16px;
}

.tableCaption {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 8px;
    text-align: left;
    padding-bottom: 8px;
    color: #333;
}

.expGrid {
    display: grid;
    grid-template-columns: auto auto auto 1fr auto;
    border-top: 1px solid #09ff00;
    border-left: 1px solid #09ff00;
}

.gridHeader {
    background: #0000ff;
    color: #fff;
    padding: 10px 16px;
    text-align: left;
    letter-spacing: 0.5px;
    border-right: 1px solid #09ff00;
    border-bottom: 1px solid #09ff00;
}

.gridCell {
    padding: 10px 16px;
    border-right: 1px solid #09ff00;
    border-bottom: 1px solid #09ff00;
}

.statusDone {
    color: #09aa00;
    font-weight: 700;
}

.statusProgress {
    color: #0000ff;
    font-weight: 700;
}

.inlineBlockDemo {
    max-width: 700px;
}

.demoLabel {
    font-size: 14px;
    color: #666;
    margin: 16px 0 6px;
}

.inlineTag {
    background: #0000ff;
    color: #fff;
    padding: 4px 14px;
    border-radius: 100%;
    font-size: 14px;
    margin-right: 6px;
}

.blockItem {
    background: #f0f0ff;
    border-left: 4px solid #0000ff;
    padding: 10px 16px;
    margin-bottom: 6px;
}

.mixedParagraph {
    font-family: 'Arial Narrow Bold', sans-serif;
    font-size: 15px;
    line-height: 1.8;
    max-width: 600px;
}

.inlineHighlight {
    background: #09ff00;
    padding: 0 6px;
    color: #000;
}

.separatedBlock {
    border: 2px solid #0000ff;
    border-radius: 100%;
    padding: 12px 20px;
    margin-bottom: 12px;
    max-width: 500px;
    text-align: center;
}

.linkList {
    list-style: none;
    padding: 0;
    line-height: 2.4;
}

.linkList li {
    display: flex;
    align-items: center;
    gap: 12px;
}

.linkBadge {
    background: #0000ff;
    color: #fff;
    font-size: 11px;
    padding: 2px 10px;
    border-radius: 100%;
    min-width: 90px;
    text-align: center;
    letter-spacing: 0.5px;
}

footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    text-align: center;
    font-size: 14px;
    line-height: 1.8;
    box-sizing: border-box;
}

footer p {
    margin: 0;
}