/* Minimal raw HTML styling */
body {
    font-family: Times New Roman, serif;
    line-height: 1.4;
    margin: 0;
    padding: 0;
}

.container {
    display: flex;
}

.sidebar {
    width: 200px;
    border-right: 1px solid #000;
    padding: 20px;
    position: fixed;
    height: 100vh;
    overflow-y: auto;
}

.profile-section {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #000;
}

.profile-photo {
    width: 100px;
    height: 100px;
    display: block;
    margin-bottom: 10px;
    cursor: pointer;
    border: 1px solid #000;
}

.nav-menu {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.nav-link {
    display: block;
    margin-bottom: 5px;
}

.links-section {
    padding-top: 20px;
    border-top: 1px solid #000;
}

.external-link {
    display: block;
    margin-bottom: 5px;
}

.main-content {
    margin-left: 240px;
    padding: 20px;
}

.content-section {
    display: none;
}

.content-section.active {
    display: block;
}

.content-section h2 {
    border-bottom: 1px solid #000;
    padding-bottom: 5px;
}

.item-header {
    margin-bottom: 5px;
}

.date {
    font-style: italic;
}

.education-item, .experience-item, .project-item {
    margin-bottom: 20px;
}

.skills-grid {
    margin-top: 10px;
}

.skill-tag {
    display: inline-block;
    margin-right: 10px;
    margin-bottom: 5px;
}

@media (max-width: 768px) {
    .sidebar {
        width: 100%;
        position: relative;
        height: auto;
        border-right: none;
        border-bottom: 1px solid #000;
    }

    .main-content {
        margin-left: 0;
    }
}
