body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #fff;
    color: #000;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.container {
    max-width: 700px;
    margin: 0 auto;
}

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

h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 1.2em;
    color: #666;
    margin-bottom: 20px;
}

.social-links {
    margin-bottom: 20px;
}

.social-links a {
    margin: 0 10px;
    color: #007acc;
    text-decoration: none;
}

.social-links a:hover {
    text-decoration: underline;
}

section {
    margin-bottom: 40px;
}

h2 {
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

ul {
    list-style-type: none;
    padding: 0;
}

li {
    margin-bottom: 10px;
}

a {
    color: #007acc;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.job, .edu, .project {
    margin-bottom: 20px;
}

.job h3, .edu h3 {
    margin-bottom: 5px;
}

/* Timeline Styles */
.timeline {
    position: relative;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #ddd;
}

.timeline-item {
    margin-bottom: 30px;
    padding-left: 140px;
    position: relative;
}

.timeline-year {
    position: absolute;
    left: 0;
    top: 5px;
    font-weight: bold;
    font-size: 1.1em;
    color: #333;
    width: 80px;
    text-align: right;
}

.timeline-item::before {
    display: none;
}

.timeline-content {
    padding: 10px 15px;
    background-color: #f9f9f9;
    border-left: 3px solid #007acc;
}

.timeline-content p {
    margin: 0;
    color: #333;
}

footer {
    text-align: center;
    margin-top: 40px;
}

.profile-pic {
    width: 200px;
    height: auto;
    border-radius: 50%;
}

@media (max-width: 600px) {
    body {
        padding: 10px;
    }
    h1 {
        font-size: 2em;
    }
    .social-links a {
        display: block;
        margin: 5px 0;
    }
}