.profile-content {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
}

.profile-section {
    margin-bottom: 3rem;
}

.profile-section h2 {
    color: #363636;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #3273dc;
    padding-bottom: 0.5rem;
}

.profile-section ul {
    list-style-type: disc;
    margin-left: 1.5rem;
    line-height: 1.8;
}

.tech-categories {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.tech-category {
    margin-bottom: 0.5rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.profile-section .tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.links-container {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.link-wrapper {
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
}

.link-wrapper:hover {
    transform: translateY(-5px);
}

.link-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: #f5f5f5;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    width: 200px;
    height: 200px;
    transition: box-shadow 0.3s ease, background 0.3s ease;
}

.link-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    background: #ffffff;
}

.link-card i {
    margin-bottom: 1rem;
    color: #3273dc;
}

.link-card .fa-linkedin {
    color: #0077b5;
}

.link-card .fa-github {
    color: #333;
}

.link-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    color: #363636;
}

@media screen and (max-width: 768px) {
    .links-container {
        flex-direction: column;
        align-items: center;
    }
    
    .profile-content {
        padding: 1rem;
    }
}
