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

/* SF Pro Display Font */
@font-face {
    font-family: 'SF Pro Display';
    src: url('https://sf.abarba.me/SF-Pro-Display-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'SF Pro Display';
    src: url('https://sf.abarba.me/SF-Pro-Display-Semibold.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
}

/* Base Styles */
body {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 14px;
    line-height: 27px;
    color: #000000;
    background-color: #ffffff;
    margin: 0;
    padding: 0;
    letter-spacing: 0.02em;
}

/* Document Container */
.document {
    max-width: 500px;
    margin: 60px auto;
    padding: 0 40px;
}

/* Title */
.title {
    font-size: 14px;
    font-weight: normal;
    text-align: left;
    margin-bottom: 24px;
    color: #000000;
}

/* Content */
.content {
    color: #000000;
}

.content p {
    margin-bottom: 27px;
    font-size: 14px;
    line-height: 27px;
    text-align: left;
}

/* Experience Section */
.experience {
    margin: 54px 0;
}

.experience-item {
    display: flex;
    margin-bottom: 27px;
    font-size: 14px;
    line-height: 27px;
}

.year {
    width: 120px;
    flex-shrink: 0;
    font-weight: normal;
}

.description {
    flex: 1;
    font-weight: normal;
}

/* Links Section */
.links {
    margin-top: 54px;
}

.link-item {
    margin-bottom: 27px;
    font-size: 14px;
    line-height: 27px;
    text-align: left;
    color: #000000;
}

.link-item a {
    color: #000000;
    text-decoration: none;
}

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

/* Responsive */
@media (max-width: 768px) {
    .document {
        margin: 40px auto;
        padding: 0 20px;
    }
    
    .title {
        font-size: 14px;
        margin-bottom: 24px;
    }
    
    .content p {
        font-size: 14px;
        margin-bottom: 16px;
    }
    
    .experience-item,
    .link-item {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .document {
        margin: 30px auto;
        padding: 0 15px;
    }
    
    .title {
        font-size: 14px;
        margin-bottom: 24px;
    }
    
    .content p {
        font-size: 14px;
        margin-bottom: 16px;
    }
    
    .experience-item,
    .link-item {
        font-size: 14px;
    }
}