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

body {
    background: #ffffff;
    color: #000000;
    font-family: 'Courier New', Courier, monospace;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    flex: 1 0 auto;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 60px;
    width: 100%;
}

h1 {
    margin: 2rem 0 0.5rem;
    text-transform: uppercase;
    font-weight: normal;
    letter-spacing: 0.1em;
    font-size: 2.5rem;
}

h2 {
    font-size: 1.5rem;
    margin: 2rem 0 1.5rem;
    text-transform: uppercase;
    font-weight: normal;
    letter-spacing: 0.08em;
}

header {
    margin-bottom: 1rem;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.header-text {
    flex: 1;
}

.header-avatar {
    width: 110px;
    height: 110px;
    border-radius: 6px;
    object-fit: cover;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.header-avatar:hover {
    transform: translateY(-2px);
}

header h1 {
    margin-top: 3rem;
}

header h2 {
    margin-top: 0.5rem;
    font-size: 1.2rem;
    color: rgba(0, 0, 0, 0.7);
}

a {
    color: #000000;
    text-decoration: none;
    transition: all 0.2s ease;
    border-bottom: 1px solid transparent;
}

a:hover {
    border-bottom-color: #840c0c;
    color: #840c0c;
}

a:focus {
    outline: 2px solid #840c0c;
    outline-offset: 2px;
}

.section {
    margin-bottom: 3rem;
}

.section p {
    margin: 0.5rem 0 1rem;
    color: rgba(0, 0, 0, 0.7);
    font-size: 1.05rem;
}

.section ul li {
    color: rgba(0, 0, 0, 0.85);
    margin: 0.8rem 0;
    font-size: 1rem;
    line-height: 1.8;
}

.section nav ul li {
    margin: 0.6rem 0;
}

.divider {
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    margin: 2rem 0;
}

li::marker {
    color: #840c0c;
}

ul {
    list-style: square inside;
    padding: 0 0 0 1.5rem;
}

footer {
    text-align: center;
    color: rgba(0, 0, 0, 0.4);
    font-size: 0.85rem;
    padding: 3rem 0 2rem;
    margin-top: auto;
    flex-shrink: 0;
    line-height: 1.8;
}

@media (max-width: 1024px) {
    .container {
        padding: 35px 40px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.3rem;
    }
    
    .header-avatar {
        width: 95px;
        height: 95px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 25px 30px;
    }
    
    h1 {
        font-size: 1.8rem;
        letter-spacing: 0.08em;
    }
    
    h2 {
        font-size: 1.2rem;
        margin: 1.5rem 0 1rem;
    }
    
    header h1 {
        margin-top: 2rem;
    }
    
    .header-content {
        gap: 1.5rem;
    }
    
    .header-avatar {
        width: 75px;
        height: 75px;
        border-radius: 5px;
    }
    
    .section ul li {
        font-size: 0.95rem;
        margin: 0.6rem 0;
    }
    
    ul {
        padding-left: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 20px;
    }
    
    h1 {
        font-size: 1.5rem;
        margin: 1.5rem 0 0.5rem;
        letter-spacing: 0.05em;
    }
    
    h2 {
        font-size: 1rem;
        margin: 1.2rem 0 0.8rem;
        letter-spacing: 0.05em;
    }
    
    header h1 {
        margin-top: 1rem;
    }
    
    header h2 {
        font-size: 0.9rem;
    }
    
    .header-content {
        gap: 1rem;
    }
    
    .header-avatar {
        width: 58px;
        height: 58px;
        border-radius: 4px;
    }
    
    .header-avatar:hover {
        transform: none;
    }
    
    .section {
        margin-bottom: 2rem;
    }
    
    .section ul li {
        font-size: 0.9rem;
        margin: 0.5rem 0;
        line-height: 1.6;
    }
    
    .section p {
        font-size: 0.95rem;
    }
    
    .divider {
        margin: 1.5rem 0;
    }
    
    ul {
        padding-left: 0.5rem;
    }
    
    footer {
        font-size: 0.75rem;
        padding: 2rem 0 1.5rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
