.profile-section {
    text-align: center;
    margin-bottom: 2rem;
}

.profile-image {
    width: 190px;
    height: 190px;
    border-radius: 50%;
    background-image: url('../static/cv.webp');
    background-size: cover;
    background-position: center;
    margin: 0 auto 1rem;
    display: flex;
    justify-content: center;
    font-size: 3rem;
    font-weight: bold;
}

.profile-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.profile-title {
    color: #71767b;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.contact-info {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    color: #71767b;
    font-size: 0.9rem;
}

.contact-item svg {
    width: 16px;
    height: 16px;
    margin-right: 0.75rem;
    fill: currentColor;
}

.navigation {
    list-style: none;
}

.nav-item {
    margin-bottom: 0.5rem;
}

.nav-link {
    display: block;
    padding: 0.75rem 1rem;
    color: #ffffff;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.2s ease;
    font-weight: 500;
}

.nav-link:hover {
    background-color: #16181c;
}

.nav-link.active {
    background-color: #1d9bf0;
    color: #ffffff;
}