.navbar {
    background-color: gray;
}

.nav-list {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
}

.nav-item {
    padding: 10px;
    background-color: #666;
}

.section-title {
    text-align: center;
    margin-top: 40px;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

nav {
    margin-bottom: 40px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    padding: 10px 0;
}

nav a {
    text-decoration: none;
    color: #666;
    font-weight: 500;
}

nav a.active {
    color: #333;
}

.profile-section {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.profile-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
}

.profile-info h1 {
    font-size: 24px;
    margin-bottom: 10px;
}

.profile-info .title {
    font-size: 16px;
    margin-bottom: 5px;
}

.profile-info .subtitle {
    color: #666;
    margin-bottom: 20px;
}

.location {
    margin-bottom: 20px;
}

.location p {
    color: #666;
    margin-bottom: 5px;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-link {
    text-decoration: none;
    color: #666;
}

section {
    margin-bottom: 40px;
}

h2 {
    font-size: 20px;
    margin-bottom: 20px;
}

p {
    margin-bottom: 15px;
}

a {
    color: #0066cc;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

ul {
    list-style-position: inside;
    margin-left: 20px;
}

li {
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .profile-section {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .social-links {
        align-items: center;
    }
}

.learning {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

