.links {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.link {
    background: linear-gradient(90deg, #2c8e66 0%, #158abd 100%);
    color: white;
    text-decoration: none;
    padding: 15px 20px;
    border-radius: 8px;
    font-weight: 500;
    letter-spacing: 0.3px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.link:hover {
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 7px 14px rgba(0,0,0,0.15);
    background: linear-gradient(90deg, #237553 0%, #0e6d97 100%);
}

.profile-img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 4px solid #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    background-color: #e0e0e0;
    margin: 0 auto 15px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}