.competences-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.competences {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    margin: 1rem;
    padding: 1.5rem;
}

.competences h2 {
    margin-top: 0;
    border-bottom: 2px solid #eee;
    margin-bottom: 0.5rem;
    color: #333;
}

.competences h3 {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 0.8rem;
}

.competences-list {
    padding-left: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.technical-competence-list, .language-competence-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.competence-card {
    background: #eee;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);

    width: calc(20% - 1rem);
    min-width: 150px;
    padding: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-weight: 500;
    transition: transform 0.2s;
}

.competence-card:hover {
    transform: translateY(-3px);
    background: #e0e0e0;
}